Omega359 commented on issue #15872: URL: https://github.com/apache/datafusion/issues/15872#issuecomment-2843022789
Note that this syntax is supported in DuckDB: ```sql D create table test (a int, b varchar); D insert into test values (1, 'one'); D insert into test values (2, 'two'); D insert into test values (3, 'three'); D select * from test where regexp_matches(b, '(.){4,}'); ┌───────┬─────────┐ │ a │ b │ │ int32 │ varchar │ ├───────┼─────────┤ │ 3 │ three │ └───────┴─────────┘ ``` -- 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...@datafusion.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For additional commands, e-mail: github-h...@datafusion.apache.org