diff options
Diffstat (limited to 'test/dialect/oracle/test_compiler.py')
-rw-r--r-- | test/dialect/oracle/test_compiler.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/dialect/oracle/test_compiler.py b/test/dialect/oracle/test_compiler.py index 20c579f64..1b8b3fb89 100644 --- a/test/dialect/oracle/test_compiler.py +++ b/test/dialect/oracle/test_compiler.py @@ -1286,13 +1286,16 @@ class CompileTest(fixtures.TestBase, AssertsCompiledSQL): increment=7, nominvalue=True, nomaxvalue=True, + cycle=False, + order=False, ), ), ) self.assert_compile( schema.CreateTable(t), "CREATE TABLE t (y INTEGER GENERATED ALWAYS AS IDENTITY " - "(INCREMENT BY 7 START WITH 4 NOMINVALUE NOMAXVALUE))", + "(INCREMENT BY 7 START WITH 4 NOMINVALUE NOMAXVALUE " + "NOORDER NOCYCLE))", ) def test_column_identity_no_generated(self): |