summaryrefslogtreecommitdiff
path: root/test/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 /test/requirements.py
parent99d3f173dcb0eea88871102e89cf05ce3be9b4cb (diff)
parent9d0fb152069caa8de887aba28cef87f7acb32e37 (diff)
downloadsqlalchemy-2020_tutorial.tar.gz
Merge "test single and double quote inspection scenarios"2020_tutorial
Diffstat (limited to 'test/requirements.py')
-rw-r--r--test/requirements.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/requirements.py b/test/requirements.py
index 1ab0993c6..28f955fa5 100644
--- a/test/requirements.py
+++ b/test/requirements.py
@@ -846,6 +846,16 @@ class DefaultRequirements(SuiteRequirements):
)
@property
+ def symbol_names_w_double_quote(self):
+ """Target driver can create tables with a name like 'some " table'
+
+ """
+
+ return skip_if(
+ [no_support("oracle", "ORA-03001: unimplemented feature")]
+ )
+
+ @property
def emulated_lastrowid(self):
""""target dialect retrieves cursor.lastrowid or an equivalent
after an insert() construct executes.