Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.19.0
Description
Quoting from the referenced link below, posix operators are:
Operator | Description | Example |
---|---|---|
~ | Matches regular expression, case sensitive | 'thomas' ~ '.thomas.' |
~* | Matches regular expression, case insensitive | 'thomas' ~* '.Thomas.' |
!~ | Does not match regular expression, case sensitive | 'thomas' !~ '.Thomas.' |
!~* | Does not match regular expression, case insensitive | 'thomas' !~* '.vadim.' |
Reference: https://www.postgresql.org/docs/11/functions-matching.html#FUNCTIONS-POSIX-REGEXP
Attachments
Issue Links
- relates to
-
CALCITE-5699 Posix regex expressions failed while NOT operator is executed with null literals.
- Closed
-
CALCITE-5914 Cache compiled regular expressions in SQL function runtime
- Closed
- links to