Skip to content

Commit

Permalink
chore(query): better handling of nullable columns during filter execu…
Browse files Browse the repository at this point in the history
…tion (#14197)

better handling of nullable columns during filter execution
  • Loading branch information
Dousir9 authored Jan 2, 2024
1 parent 76c4d25 commit 6b8fd7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/query/expression/src/filter/select.rs
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ impl<'a> Selector<'a> {
op.clone()
};

match left_data_type {
match left_data_type.remove_nullable() {
DataType::Number(ty) => {
with_number_mapped_type!(|T| match ty {
NumberDataType::T => self.select_type_values::<NumberType<T>>(
Expand Down

0 comments on commit 6b8fd7f

Please sign in to comment.