waynexia commented on code in PR #15299:
URL: https://github.com/apache/datafusion/pull/15299#discussion_r2004397798
##
datafusion/optimizer/src/simplify_expressions/regex.rs:
##
@@ -43,6 +47,23 @@ pub fn simplify_regex_expr(
let mode = OperatorMode::new(&op);
if let
alamb commented on code in PR #15299:
URL: https://github.com/apache/datafusion/pull/15299#discussion_r2004125741
##
datafusion/optimizer/src/simplify_expressions/regex.rs:
##
@@ -43,6 +47,23 @@ pub fn simplify_regex_expr(
let mode = OperatorMode::new(&op);
if let Ex
waynexia merged PR #15299:
URL: https://github.com/apache/datafusion/pull/15299
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: github-unsubscr...@dataf
waynexia commented on PR #15299:
URL: https://github.com/apache/datafusion/pull/15299#issuecomment-2744557761
Thank you for reviewing @jayzhan211 @alamb :heart:
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL a
waynexia commented on code in PR #15299:
URL: https://github.com/apache/datafusion/pull/15299#discussion_r2006630060
##
datafusion/sqllogictest/test_files/union.slt:
##
@@ -910,8 +910,8 @@ SELECT * FROM (SELECT y FROM u1 UNION ALL SELECT y FROM u2)
ORDER BY y;
query I
SELECT
jayzhan211 commented on code in PR #15299:
URL: https://github.com/apache/datafusion/pull/15299#discussion_r2004540986
##
datafusion/sqllogictest/test_files/union.slt:
##
@@ -910,8 +910,8 @@ SELECT * FROM (SELECT y FROM u1 UNION ALL SELECT y FROM u2)
ORDER BY y;
query I
SELEC
jayzhan211 commented on code in PR #15299:
URL: https://github.com/apache/datafusion/pull/15299#discussion_r2002218628
##
datafusion/optimizer/src/simplify_expressions/regex.rs:
##
@@ -43,6 +45,23 @@ pub fn simplify_regex_expr(
let mode = OperatorMode::new(&op);
if l
waynexia opened a new pull request, #15299:
URL: https://github.com/apache/datafusion/pull/15299
## Which issue does this PR close?
- Closes #.
## Rationale for this change
Simplify dump regex cases like `~ '.*'` or `!~ '.*'`.
## What changes are in