summaryrefslogtreecommitdiff
path: root/test/dialect/oracle/test_compiler.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/dialect/oracle/test_compiler.py')
-rw-r--r--test/dialect/oracle/test_compiler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dialect/oracle/test_compiler.py b/test/dialect/oracle/test_compiler.py
index 96969b459..2973c6e39 100644
--- a/test/dialect/oracle/test_compiler.py
+++ b/test/dialect/oracle/test_compiler.py
@@ -1622,7 +1622,7 @@ class SequenceTest(fixtures.TestBase, AssertsCompiledSQL):
ddl.CreateSequence(
Sequence("my_seq", nomaxvalue=True, nominvalue=True)
),
- "CREATE SEQUENCE my_seq START WITH 1 NOMINVALUE NOMAXVALUE",
+ "CREATE SEQUENCE my_seq NOMINVALUE NOMAXVALUE",
dialect=oracle.OracleDialect(),
)