File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
src/test/java/com/googlecode/scheme2ddl Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,9 @@ public void testReplaceActualSequenceValueWithOne() throws Exception {
18
18
String s = "CREATE SEQUENCE \" TEST01\" .\" SEQ_01\" MINVALUE 1 MAXVALUE 9999999999999999999999999999 INCREMENT BY 1 START WITH 2122 CACHE 20 NOORDER NOCYCLE ;\n " ;
19
19
String res = ddlFormatter .replaceActualSequenceValueWithOne (s );
20
20
assertEquals (
21
- "CREATE SEQUENCE \" TEST01\" .\" SEQ_01\" MINVALUE 1 MAXVALUE 9999999999999999999999999999 INCREMENT BY 1 START WITH 1 CACHE 20 NOORDER NOCYCLE ;\n "
21
+ "CREATE SEQUENCE \" TEST01\" .\" SEQ_01\" MINVALUE 1 MAXVALUE 9999999999999999999999999999 INCREMENT BY 1 START WITH 1 CACHE 20 NOORDER NOCYCLE ;\n " +
22
+ "\r \n " +
23
+ "/* -- actual sequence value was replaced by scheme2ddl to 1 */"
22
24
, res );
23
25
24
26
}
You can’t perform that action at this time.
0 commit comments