Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix
  • Loading branch information
jxnu-liguobin committed Dec 14, 2023
commit 2c88a41401083f59e95d9f333a4f8682a468bdf5
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ public String toString() {

public String toStringDataTypeAndSpec() {
if (colDataType == null) {
return (columnSpecs == null || columnSpecs.isEmpty() ? ""
: PlainSelect.getStringList(columnSpecs, false, false));
return columnSpecs == null || columnSpecs.isEmpty() ? ""
: PlainSelect.getStringList(columnSpecs, false, false);
}
return colDataType + (columnSpecs != null && !columnSpecs.isEmpty()
? " " + PlainSelect.getStringList(columnSpecs, false, false)
Expand Down