CSNW / sql-bricks

Transparent, Schemaless SQL Generation
http://csnw.github.io/sql-bricks
MIT License
203 stars 25 forks source link

Support for REGEXP_LIKE query #137

Closed chikku1780 closed 9 months ago

chikku1780 commented 9 months ago
  1. Support for REGEXP_LIKE for TrinoSQL query
prust commented 9 months ago

@chikku1780: Thank you for the pull request! Unfortunately, the sql-bricks library is intended to implement just the core SQL standard, whereas different dialects (Postgres, SQLite, etc) have separate extension libraries. I think this feature REGEXP_LIKE would fit into that category as well, since it isn't standardized (though it looks like it's supported in Oracle, as well as TrinoSQL). You're welcome to maintain a fork of sql-bricks that includes it, or to write an extension like these:

If you do and would like me to link to it, let me know!