version for 1.6.12

This commit is contained in:
inrgihc
2022-07-16 00:09:15 +08:00
parent 817785fe11
commit ea64d07503
36 changed files with 497 additions and 210 deletions

View File

@@ -5,7 +5,7 @@
<parent>
<groupId>com.gitee.dbswitch</groupId>
<artifactId>dbswitch-parent</artifactId>
<version>1.6.11</version>
<version>1.6.12</version>
</parent>
<artifactId>dbswitch-data</artifactId>

View File

@@ -302,7 +302,7 @@ public class MigrationHandler implements Supplier<Long> {
Object[] record = new Object[sourceFields.size()];
for (int i = 1; i <= sourceFields.size(); ++i) {
try {
record[i - 1] = writer.format(rs.getObject(i));
record[i - 1] = rs.getObject(i);
} catch (Exception e) {
log.warn("!!! Read data from table [ {} ] use function ResultSet.getObject() error",
tableNameMapString, e);