File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
embulk-output-jdbc/src/main/java/org/embulk/output/jdbc Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ plugins {
11
11
12
12
allprojects {
13
13
group = " org.embulk"
14
- version = " 0.10.0 "
14
+ version = " 0.10.1 "
15
15
description = " Inserts or updates records to a table."
16
16
}
17
17
Original file line number Diff line number Diff line change 46
46
import org .embulk .config .ConfigSource ;
47
47
import org .embulk .config .TaskReport ;
48
48
import org .embulk .config .TaskSource ;
49
- import org .embulk .spi .Exec ;
50
49
import org .embulk .spi .Column ;
51
50
import org .embulk .spi .ColumnVisitor ;
52
51
import org .embulk .spi .OutputPlugin ;
@@ -520,7 +519,7 @@ public void run() throws SQLException
520
519
throw new RuntimeException (ex );
521
520
}
522
521
}
523
- return Exec .newConfigDiff ();
522
+ return CONFIG_MAPPER_FACTORY .newConfigDiff ();
524
523
}
525
524
526
525
public void cleanup (TaskSource taskSource ,
@@ -1221,7 +1220,7 @@ public void abort()
1221
1220
@ Override
1222
1221
public TaskReport commit ()
1223
1222
{
1224
- return Exec .newTaskReport ();
1223
+ return CONFIG_MAPPER_FACTORY .newTaskReport ();
1225
1224
}
1226
1225
1227
1226
protected void handleColumnsSetters ()
You can’t perform that action at this time.
0 commit comments