Skip to content

Commit

Permalink
Refactor PipelineDataSourceSink (#32694)
Browse files Browse the repository at this point in the history
  • Loading branch information
terrymanu authored Aug 26, 2024
1 parent 9eba36e commit df0cd62
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ private void executeUpdate(final Connection connection, final DataRecord dataRec
// TODO if table without unique key the conditionColumns before values is null, so update will fail at PostgreSQL
int updateCount = preparedStatement.executeUpdate();
if (1 != updateCount) {
log.warn("execute update failed, update count: {}, sql: {}, set columns: {}, sharding columns: {}, condition columns: {}",
log.warn("Update failed, update count: {}, sql: {}, set columns: {}, sharding columns: {}, condition columns: {}",
updateCount, sql, setColumns, JsonUtils.toJsonString(shardingColumns), JsonUtils.toJsonString(conditionColumns));
}
} catch (final SQLException ex) {
Expand Down

0 comments on commit df0cd62

Please sign in to comment.