Skip to content

Commit 9704bc1

Browse files
committed
fix
1 parent 04980f6 commit 9704bc1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Apache.IoTDB/DataStructure/Tablet.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ public byte[] GetBinaryValues()
370370
for (int j = 0; j < RowNumber; j++)
371371
{
372372
var value = _values[j][i];
373-
buffer.AddBinary(value != null ? (byte[])value : []);
373+
buffer.AddBinary(value != null ? (byte[])value : new byte[] { });
374374
}
375375
break;
376376
}

0 commit comments

Comments
 (0)