Skip to content

Commit

Permalink
fix生成代码两个..的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
zouzhigang committed Mar 22, 2018
1 parent 60d05bf commit b45eac9
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@ public void generate() throws Exception {
tableConfig.setDeleteByExampleStatementEnabled(false);
tableConfig.setSelectByExampleStatementEnabled(false);
}
tableConfig.setCatalog(selectedDatabaseConfig.getSchema());

tableConfig.setSchema(selectedDatabaseConfig.getSchema());

// 针对 postgresql 单独配置
if (DbType.valueOf(selectedDatabaseConfig.getDbType()).getDriverClass() == "org.postgresql.Driver") {
Expand Down

0 comments on commit b45eac9

Please sign in to comment.