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 a0a7525 commit 2c88a41Copy full SHA for 2c88a41
src/main/java/net/sf/jsqlparser/statement/create/table/ColumnDefinition.java
@@ -73,8 +73,8 @@ public String toString() {
73
74
public String toStringDataTypeAndSpec() {
75
if (colDataType == null) {
76
- return (columnSpecs == null || columnSpecs.isEmpty() ? ""
77
- : PlainSelect.getStringList(columnSpecs, false, false));
+ return columnSpecs == null || columnSpecs.isEmpty() ? ""
+ : PlainSelect.getStringList(columnSpecs, false, false);
78
}
79
return colDataType + (columnSpecs != null && !columnSpecs.isEmpty()
80
? " " + PlainSelect.getStringList(columnSpecs, false, false)
0 commit comments