Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
KirillKurdyukov committed Aug 26, 2024
1 parent 2bdafea commit 2b6320c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ public SqlStatement[] generateStatements(Database database) {
while (resultSet.next()) {
columnToLiquibaseDataType.put(
resultSet.getString("COLUMN_NAME").toLowerCase(),
DataTypeFactory.getInstance()
.fromDescription(resultSet.getString("TYPE_NAME"), database));
DataTypeFactory.getInstance().fromDescription(
resultSet.getString("TYPE_NAME"), database));
}

StringBuilder yqlInsert = new StringBuilder()
Expand Down

0 comments on commit 2b6320c

Please sign in to comment.