diff options
| author | Peter Eisentraut | 2021-12-20 09:12:25 +0000 |
|---|---|---|
| committer | Peter Eisentraut | 2021-12-20 09:36:44 +0000 |
| commit | 222b697ec077047024a96392a2f5cb9b1803ccf7 (patch) | |
| tree | 7aa4480993edbb65b914785de73b2f65a6e348f0 /src | |
| parent | b1c169caf0678a82cf26b5656e01399f6153456b (diff) | |
doc: More documentation on regular expressions and SQL standard
Reviewed-by: Gilles Darold <[email protected]>
Discussion: https://www.postgresql.org/message-id/[email protected]
Diffstat (limited to 'src')
| -rw-r--r-- | src/backend/catalog/sql_features.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/backend/catalog/sql_features.txt b/src/backend/catalog/sql_features.txt index 9f424216e26..b8a78f4d419 100644 --- a/src/backend/catalog/sql_features.txt +++ b/src/backend/catalog/sql_features.txt @@ -323,11 +323,11 @@ F821 Local table references NO F831 Full cursor update NO F831 Full cursor update 01 Updatable scrollable cursors NO F831 Full cursor update 02 Updatable ordered cursors NO -F841 LIKE_REGEX predicate NO -F842 OCCURRENCES_REGEX function NO -F843 POSITION_REGEX function NO -F844 SUBSTRING_REGEX function NO -F845 TRANSLATE_REGEX function NO +F841 LIKE_REGEX predicate NO consider regexp_like() +F842 OCCURRENCES_REGEX function NO consider regexp_matches() +F843 POSITION_REGEX function NO consider regexp_instr() +F844 SUBSTRING_REGEX function NO consider regexp_substr() +F845 TRANSLATE_REGEX function NO consider regexp_replace() F846 Octet support in regular expression operators NO F847 Nonconstant regular expressions NO F850 Top-level <order by clause> in <query expression> YES |
