Skip to content

Commit 80b0658

Browse files
committed
fix valueIsNull
1 parent d8de308 commit 80b0658

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/Apache.IoTDB/DataStructure/Column.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ public BinaryColumn(int arrayOffset, int positionCount, bool[] valueIsNull, Bina
175175
ColumnEncoding.BinaryArray,
176176
arrayOffset: arrayOffset,
177177
positionCount: positionCount,
178-
valueIsNull: null,
178+
valueIsNull: valueIsNull,
179179
values: values)
180180
{ }
181181

@@ -193,7 +193,7 @@ public IntColumn(int arrayOffset, int positionCount, bool[] valueIsNull, int[] v
193193
ColumnEncoding.Int32Array,
194194
arrayOffset: arrayOffset,
195195
positionCount: positionCount,
196-
valueIsNull: null,
196+
valueIsNull: valueIsNull,
197197
values: values)
198198
{ }
199199

@@ -211,7 +211,7 @@ public FloatColumn(int arrayOffset, int positionCount, bool[] valueIsNull, float
211211
ColumnEncoding.Int32Array,
212212
arrayOffset: arrayOffset,
213213
positionCount: positionCount,
214-
valueIsNull: null,
214+
valueIsNull: valueIsNull,
215215
values: values)
216216
{ }
217217

@@ -229,7 +229,7 @@ public LongColumn(int arrayOffset, int positionCount, bool[] valueIsNull, long[]
229229
ColumnEncoding.Int64Array,
230230
arrayOffset: arrayOffset,
231231
positionCount: positionCount,
232-
valueIsNull: null,
232+
valueIsNull: valueIsNull,
233233
values: values)
234234
{ }
235235

@@ -247,7 +247,7 @@ public DoubleColumn(int arrayOffset, int positionCount, bool[] valueIsNull, doub
247247
ColumnEncoding.Int64Array,
248248
arrayOffset: arrayOffset,
249249
positionCount: positionCount,
250-
valueIsNull: null,
250+
valueIsNull: valueIsNull,
251251
values: values)
252252
{ }
253253

@@ -265,7 +265,7 @@ public BooleanColumn(int arrayOffset, int positionCount, bool[] valueIsNull, boo
265265
ColumnEncoding.ByteArray,
266266
arrayOffset: arrayOffset,
267267
positionCount: positionCount,
268-
valueIsNull: null,
268+
valueIsNull: valueIsNull,
269269
values: values)
270270
{ }
271271

0 commit comments

Comments
 (0)