Skip to content

Commit

Permalink
Fix irregular variable names
Browse files Browse the repository at this point in the history
  • Loading branch information
zhuangchong committed Jul 9, 2024
1 parent 178eb37 commit cb1104b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@ public Table loadTable(String tableName) throws TableNotExistException {
return catalog.getTable(tableIdentifier(tableName));
}

public void createTable(String tablename, Schema schema)
public void createTable(String tableName, Schema schema)
throws Catalog.TableAlreadyExistException, DatabaseNotExistException {
catalog.createTable(tableIdentifier(tablename), schema, false);
catalog.createTable(tableIdentifier(tableName), schema, false);
}

public void dropTable(String tableName) throws TableNotExistException {
Expand Down

0 comments on commit cb1104b

Please sign in to comment.