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 5a2c77b commit feecf9bCopy full SHA for feecf9b
src/query/formats/src/field_decoder/fast_values.rs
@@ -164,9 +164,7 @@ impl FastFieldDecoderValues {
164
reader: &mut Cursor<R>,
165
positions: &mut VecDeque<usize>,
166
) -> Result<()> {
167
- if reader.eof() {
168
- column.push_null();
169
- } else if reader.ignore_bytes(b"NULL") || reader.ignore_bytes(b"null") {
+ if reader.eof() || reader.ignore_bytes(b"NULL") || reader.ignore_bytes(b"null") {
170
column.push_null();
171
} else {
172
self.read_field(&mut column.builder, reader, positions)?;
0 commit comments