Dandandan opened a new issue, #22258: URL: https://github.com/apache/datafusion/issues/22258
Split out from #22247. ### Mismatch \`regexp_replace\` should honor PostgreSQL multiline flag \`m\`. ```sql SELECT regexp_replace(E'a\nb', '^b', 'x', 'm'); ``` PostgreSQL: ```text a x ``` DataFusion: ```text a\nb ``` ### Expected behavior For PostgreSQL-compatible SQL semantics, DataFusion should either match PostgreSQL's result or raise the same class of domain/semantic error.. Error: No DBURL given sql [-hnr] [--table-size] [--db-size] [-p pass-through] [-s string] dburl [command] PostgreSQL: DataFusion: ### Expected behavior For PostgreSQL-compatible SQL semantics, DataFusion should either match PostgreSQL's result or raise the same class of domain/semantic error. EOF ) -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
