Skip to content

Commit 1be036b

Browse files
committed
feat(query): fix func name
1 parent 589a40f commit 1be036b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/query/service/src/sql/executor/pipeline_builder.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ impl PipelineBuilder {
250250
let left_type = predicate.data_type();
251251
let right_type = pred.data_type();
252252
let data_types = vec![&left_type, &right_type];
253-
let func = FunctionFactory::instance().get("and", &data_types)?;
253+
let func = FunctionFactory::instance().get("and_filters", &data_types)?;
254254
predicate = PhysicalScalar::Function {
255255
name: "and_filters".to_string(),
256256
args: vec![

0 commit comments

Comments
 (0)