We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98b66be commit fce5b99Copy full SHA for fce5b99
1 file changed
src/main/java/net/sf/jsqlparser/schema/Sequence.java
@@ -60,7 +60,7 @@ public Sequence withDatabase(Database database) {
60
setDatabase(database);
61
return this;
62
}
63
-
+
64
public String getSchemaName() {
65
return getIndex(SCHEMA_IDX);
66
@@ -176,6 +176,7 @@ public enum ParameterType {
176
* Represents a parameter when declaring a sequence
177
*/
178
public static class Parameter {
179
180
private final ParameterType option;
181
private Long value;
182
@@ -198,7 +199,7 @@ public String formatParameter() {
198
199
case START_WITH:
200
return prefix("START WITH");
201
case RESTART_WITH:
- if(value != null){
202
+ if (value != null) {
203
return prefix("RESTART WITH");
204
} else {
205
return "RESTART";
0 commit comments