Skip to content
This repository has been archived by the owner on Feb 20, 2022. It is now read-only.

Commit

Permalink
Fixing MySQL-Dump
Browse files Browse the repository at this point in the history
  • Loading branch information
digger-bw committed Sep 28, 2014
1 parent 8f45d6f commit 4b27ef0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/mpv5/db/migration/DerbyToMySQL.java
Expand Up @@ -88,7 +88,7 @@ private void explodeTables() throws SQLException, IOException {
result.append("\nCREATE TABLE ").append(tableName);
result.append(" (\n");
StringBuilder primaryKeyColumns = new StringBuilder();
tableName = tableName.toUpperCase();
// tableName = tableName.toUpperCase();
ResultSet cols = Meta.getColumns(null, null, tableName, "%");
while (cols.next()) {
result.append(" ");
Expand Down
2 changes: 1 addition & 1 deletion src/mpv5/db/migration/MySQLToMySQL.java
Expand Up @@ -87,7 +87,7 @@ private void explodeTables() throws SQLException {
result.append("\nCREATE TABLE ").append(tableName);
result.append(" (\n");
StringBuilder primaryKeyColumns = new StringBuilder();
tableName = tableName.toUpperCase();
// tableName = tableName.toUpperCase();
ResultSet cols = Meta.getColumns(null, null, tableName, "%");
while (cols.next()) {
result.append(" ");
Expand Down

0 comments on commit 4b27ef0

Please sign in to comment.