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 b2601d9 commit bce0255Copy full SHA for bce0255
src/main/java/com/code/advancedsql/query/Create.java
@@ -328,7 +328,7 @@ public Create ifNotExists() {
328
329
@Override
330
public java.lang.String toQuery() {
331
- StringBuilder query = new StringBuilder("CREATE TABLE " + (ifNotExists ? "IF NOT EXISTS" : "") + this.table + " ( ");
+ StringBuilder query = new StringBuilder("CREATE TABLE " + (ifNotExists ? "IF NOT EXISTS " : "") + this.table + " ( ");
332
333
List<IColumn> columns = this.action.getColumns();
334
0 commit comments