File tree Expand file tree Collapse file tree
src/main/java/net/sf/jsqlparser/expression Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -214,7 +214,7 @@ public StringBuilder appendObject(StringBuilder builder) {
214214 }
215215
216216 if (onNullType !=null ) {
217- switch (onNullType ) {
217+ switch (onNullType ) {
218218 case NULL :
219219 builder .append (" NULL ON NULL" );
220220 break ;
@@ -227,7 +227,7 @@ public StringBuilder appendObject(StringBuilder builder) {
227227 }
228228
229229 if (uniqueKeysType !=null ) {
230- switch (uniqueKeysType ) {
230+ switch (uniqueKeysType ) {
231231 case WITH :
232232 builder .append (" WITH UNIQUE KEYS" );
233233 break ;
@@ -260,7 +260,7 @@ public StringBuilder appendArray(StringBuilder builder) {
260260 expressionOrderBy .toStringOrderByElements (builder );
261261
262262 if (onNullType !=null ) {
263- switch (onNullType ) {
263+ switch (onNullType ) {
264264 case NULL :
265265 builder .append (" NULL ON NULL " );
266266 break ;
You can’t perform that action at this time.
0 commit comments