Skip to content
This repository has been archived by the owner on May 17, 2021. It is now read-only.

Commit

Permalink
add logging of create item table sql
Browse files Browse the repository at this point in the history
  • Loading branch information
skazi0 committed Feb 25, 2019
1 parent 7d6fa62 commit da424e1
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -319,6 +319,7 @@ public void doCreateItemTable(ItemVO vo) {
String sql = StringUtilsExt.replaceArrayMerge(SQL_CREATE_ITEM_TABLE,
new String[] { "#tableName#", "#dbType#", "#tablePrimaryKey#" },
new String[] { vo.getTableName(), vo.getDbType(), sqlTypes.get("tablePrimaryKey") });
logger.debug("JDBC::doCreateItemTable sql={}", sql);
Yank.execute(sql, null);
}

Expand Down

0 comments on commit da424e1

Please sign in to comment.