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) {
6060 setDatabase (database );
6161 return this ;
6262 }
63-
63+
6464 public String getSchemaName () {
6565 return getIndex (SCHEMA_IDX );
6666 }
@@ -176,6 +176,7 @@ public enum ParameterType {
176176 * Represents a parameter when declaring a sequence
177177 */
178178 public static class Parameter {
179+
179180 private final ParameterType option ;
180181 private Long value ;
181182
@@ -198,7 +199,7 @@ public String formatParameter() {
198199 case START_WITH :
199200 return prefix ("START WITH" );
200201 case RESTART_WITH :
201- if (value != null ){
202+ if (value != null ) {
202203 return prefix ("RESTART WITH" );
203204 } else {
204205 return "RESTART" ;
You can’t perform that action at this time.
0 commit comments