mirror of
https://gitee.com/dromara/dbswitch.git
synced 2025-09-25 05:24:52 +00:00
version for 1.6.12
This commit is contained in:
@@ -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>
|
||||
|
@@ -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);
|
||||
|
Reference in New Issue
Block a user