summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/testing/requirements.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sqlalchemy/testing/requirements.py')
-rw-r--r--lib/sqlalchemy/testing/requirements.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/lib/sqlalchemy/testing/requirements.py b/lib/sqlalchemy/testing/requirements.py
index 7b0ddafe3..9b8caac2e 100644
--- a/lib/sqlalchemy/testing/requirements.py
+++ b/lib/sqlalchemy/testing/requirements.py
@@ -1280,3 +1280,22 @@ class SuiteRequirements(Requirements):
This is mainly to exclude MSSql.
"""
return exclusions.closed()
+
+ @property
+ def regexp_match(self):
+ """backend supports the regexp_match operator.
+
+ .. versionadded:: 1.4
+
+ """
+ return exclusions.closed()
+
+ @property
+ def regexp_replace(self):
+ """backend supports the regexp_replace operator.
+
+ .. versionadded:: 1.4
+
+
+ """
+ return exclusions.closed()