Skip to content

Commit

Permalink
Semantics
Browse files Browse the repository at this point in the history
  • Loading branch information
safris committed Jun 8, 2023
1 parent 7b23043 commit 39e876f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ddlx/src/main/java/org/jaxdb/ddlx/Generator.java
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public final class Generator {

private static void trapPrintUsage() {
final String vendors = ArrayUtil.toString(DbVendor.values(), "|");
System.err.println("Usage: Generator <-d DEST_DIR> <-v VENDOR> <DDLx_FILE>");
System.err.println("Usage: Generator <-d DEST_DIR> <-v VENDOR> <SCHEMA.ddlx>");
System.err.println();
System.err.println("Mandatory arguments:");
System.err.println(" -v <VENDOR> One of: <" + vendors + ">");
Expand Down
2 changes: 1 addition & 1 deletion ddlx/src/main/java/org/jaxdb/ddlx/OracleCompiler.java
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ CreateStatement createIndex(final boolean unique, final String indexName, final

b.append("INDEX ");
q(b, indexName).append(" ON ");
q(b, tableName).append(" (").append(SQLDataTypes.csvNames(getDialect(), columns)).append(')');;
q(b, tableName).append(" (").append(SQLDataTypes.csvNames(getDialect(), columns)).append(')');
return new CreateStatement(b.toString());
}

Expand Down
2 changes: 1 addition & 1 deletion jsql/src/main/java/org/jaxdb/jsql/generator/Relation.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class Relation {
this.sourceTable = sourceTable;
this.tableMeta = tableMeta;
this.columns = columns;
this.indexType = indexType;;
this.indexType = indexType;

this.columnName = columns.getInstanceNameForKey();

Expand Down

0 comments on commit 39e876f

Please sign in to comment.