diff options
Diffstat (limited to 'test/requirements.py')
-rw-r--r-- | test/requirements.py | 10 |
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. |