We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04980f6 commit 9704bc1Copy full SHA for 9704bc1
src/Apache.IoTDB/DataStructure/Tablet.cs
@@ -370,7 +370,7 @@ public byte[] GetBinaryValues()
370
for (int j = 0; j < RowNumber; j++)
371
{
372
var value = _values[j][i];
373
- buffer.AddBinary(value != null ? (byte[])value : []);
+ buffer.AddBinary(value != null ? (byte[])value : new byte[] { });
374
}
375
break;
376
0 commit comments