File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
src/main/java/net/sf/jsqlparser/schema Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ public Sequence withDatabase(Database database) {
60
60
setDatabase (database );
61
61
return this ;
62
62
}
63
-
63
+
64
64
public String getSchemaName () {
65
65
return getIndex (SCHEMA_IDX );
66
66
}
@@ -176,6 +176,7 @@ public enum ParameterType {
176
176
* Represents a parameter when declaring a sequence
177
177
*/
178
178
public static class Parameter {
179
+
179
180
private final ParameterType option ;
180
181
private Long value ;
181
182
@@ -198,7 +199,7 @@ public String formatParameter() {
198
199
case START_WITH :
199
200
return prefix ("START WITH" );
200
201
case RESTART_WITH :
201
- if (value != null ){
202
+ if (value != null ) {
202
203
return prefix ("RESTART WITH" );
203
204
} else {
204
205
return "RESTART" ;
You can’t perform that action at this time.
0 commit comments