summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/testing/requirements.py
diff options
context:
space:
mode:
authormike bayer <mike_mp@zzzcomputing.com>2020-07-13 19:07:35 +0000
committerGerrit Code Review <gerrit@bbpush.zzzcomputing.com>2020-07-13 19:07:35 +0000
commit5cae798ba9ead35dabf91da24b216a56415333c3 (patch)
treee1ac7ad3e4ff1a9193bb1d31151280769a145f91 /lib/sqlalchemy/testing/requirements.py
parent99d3f173dcb0eea88871102e89cf05ce3be9b4cb (diff)
parent9d0fb152069caa8de887aba28cef87f7acb32e37 (diff)
downloadsqlalchemy-2020_tutorial.tar.gz
Merge "test single and double quote inspection scenarios"2020_tutorial
Diffstat (limited to 'lib/sqlalchemy/testing/requirements.py')
-rw-r--r--lib/sqlalchemy/testing/requirements.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/sqlalchemy/testing/requirements.py b/lib/sqlalchemy/testing/requirements.py
index 1c350da3b..72f2612aa 100644
--- a/lib/sqlalchemy/testing/requirements.py
+++ b/lib/sqlalchemy/testing/requirements.py
@@ -635,6 +635,13 @@ class SuiteRequirements(Requirements):
return exclusions.closed()
@property
+ def symbol_names_w_double_quote(self):
+ """Target driver can create tables with a name like 'some " table'
+
+ """
+ return exclusions.open()
+
+ @property
def datetime_literals(self):
"""target dialect supports rendering of a date, time, or datetime as a
literal string, e.g. via the TypeEngine.literal_processor() method.