Skip to content

Commit

Permalink
0004567: Fixed SqlException when using sync.table.prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
evan-miller-jumpmind committed Aug 4, 2022
1 parent ff8d36e commit 96ce0b5
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -619,11 +619,11 @@ public long insertWithGeneratedKey(final String sql, final SequenceIdentifier id
public String getSequenceName(SequenceIdentifier identifier) {
switch (identifier) {
case REQUEST:
return "sym_extract_r_st_request_id";
return parameterService.getTablePrefix() + "_extract_r_st_request_id";
case DATA:
return "sym_data_data_id";
return parameterService.getTablePrefix() + "_data_data_id";
case TRIGGER_HIST:
return "sym_trigger_his_ger_hist_id";
return parameterService.getTablePrefix() + "_trigger_his_ger_hist_id";
}
return null;
}
Expand Down

0 comments on commit 96ce0b5

Please sign in to comment.