embulk-output-postgresql 0.8.3 → 0.8.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/classpath/{embulk-output-jdbc-0.8.3.jar → embulk-output-jdbc-0.8.4.jar} +0 -0
- data/classpath/{embulk-output-postgresql-0.8.3.jar → embulk-output-postgresql-0.8.4.jar} +0 -0
- data/src/main/java/org/embulk/output/postgresql/AbstractPostgreSQLCopyBatchInsert.java +7 -0
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3cbba74456a009f7687f872a7592cce4eddf0f81
|
|
4
|
+
data.tar.gz: fd22e8f50ee6fbd420ea99d62467761c3f774bbd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 73e4cb5b122d05c7d52a77e89830710a5f073b573433aa5a1e0aaebe78c9268ce96448e3e040ec200627cd370bb401a24feba570b40be03bd2b9317f5fa6b653
|
|
7
|
+
data.tar.gz: 479a29ffc6458b48d315d560099c6c8e9e741a355f32f7e814c94050a995ef8839719549994fee48cb119c62271463182207fb38142642a022564d9f3615a6cd
|
|
Binary file
|
|
Binary file
|
|
@@ -229,4 +229,11 @@ public abstract class AbstractPostgreSQLCopyBatchInsert
|
|
|
229
229
|
return String.valueOf(c);
|
|
230
230
|
}
|
|
231
231
|
}
|
|
232
|
+
|
|
233
|
+
@Override
|
|
234
|
+
public int[] getLastUpdateCounts()
|
|
235
|
+
{
|
|
236
|
+
// need not be implemented because AbstractPostgreSQLCopyBatchInsert won't retry.
|
|
237
|
+
return new int[]{};
|
|
238
|
+
}
|
|
232
239
|
}
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: embulk-output-postgresql
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.8.
|
|
4
|
+
version: 0.8.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sadayuki Furuhashi
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-05-
|
|
11
|
+
date: 2019-05-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Inserts or updates records to a table.
|
|
14
14
|
email:
|
|
@@ -19,8 +19,8 @@ extra_rdoc_files: []
|
|
|
19
19
|
files:
|
|
20
20
|
- README.md
|
|
21
21
|
- build.gradle
|
|
22
|
-
- classpath/embulk-output-jdbc-0.8.
|
|
23
|
-
- classpath/embulk-output-postgresql-0.8.
|
|
22
|
+
- classpath/embulk-output-jdbc-0.8.4.jar
|
|
23
|
+
- classpath/embulk-output-postgresql-0.8.4.jar
|
|
24
24
|
- default_jdbc_driver/postgresql-9.4-1205-jdbc41.jar
|
|
25
25
|
- lib/embulk/output/postgresql.rb
|
|
26
26
|
- src/main/java/org/embulk/output/PostgreSQLOutputPlugin.java
|