Skip to content

Commit

Permalink
feat: scalar regex match physical expr
Browse files Browse the repository at this point in the history
  • Loading branch information
zhuliquan committed Aug 31, 2024
1 parent e603185 commit b770697
Show file tree
Hide file tree
Showing 9 changed files with 924 additions and 4 deletions.
1 change: 1 addition & 0 deletions datafusion/core/tests/parquet/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ enum Scenario {
PeriodsInColumnNames,
WithNullValues,
WithNullValuesPageLevel,
#[allow(dead_code)]
UTF8,
}

Expand Down
2 changes: 2 additions & 0 deletions datafusion/physical-expr/src/expressions/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ mod literal;
mod negative;
mod no_op;
mod not;
mod scalar_regex_match;
mod try_cast;
mod unknown_column;

Expand All @@ -55,5 +56,6 @@ pub use literal::{lit, Literal};
pub use negative::{negative, NegativeExpr};
pub use no_op::NoOp;
pub use not::{not, NotExpr};
pub use scalar_regex_match::{scalar_regex_match, ScalarRegexMatchExpr};
pub use try_cast::{try_cast, TryCastExpr};
pub use unknown_column::UnKnownColumn;
Loading

0 comments on commit b770697

Please sign in to comment.