Skip to content

Commit feecf9b

Browse files
committed
fix
1 parent 5a2c77b commit feecf9b

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/query/formats/src/field_decoder/fast_values.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -164,9 +164,7 @@ impl FastFieldDecoderValues {
164164
reader: &mut Cursor<R>,
165165
positions: &mut VecDeque<usize>,
166166
) -> Result<()> {
167-
if reader.eof() {
168-
column.push_null();
169-
} else if reader.ignore_bytes(b"NULL") || reader.ignore_bytes(b"null") {
167+
if reader.eof() || reader.ignore_bytes(b"NULL") || reader.ignore_bytes(b"null") {
170168
column.push_null();
171169
} else {
172170
self.read_field(&mut column.builder, reader, positions)?;

0 commit comments

Comments
 (0)