embulk-output-postgresql 0.7.1 → 0.7.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1024f09c19b16a9e57f038d0f7e9d6b37be96d48
4
- data.tar.gz: 4677e033f38d9470258e22b931b7e3f2473f9dba
3
+ metadata.gz: b89423ada5663fef11f6ee4004a3d71521ee5733
4
+ data.tar.gz: 23c8d90ed1a630ab7859652682be4a6ec27cb178
5
5
  SHA512:
6
- metadata.gz: 047378a8d8c5a259572264a7d532479f63aadd54f9334c2be314ba59025e6ec56f148ec1a8c328fa05bf4074c35728b7936b0b5ac483524d1030e5dc47a72e13
7
- data.tar.gz: 528b022cdc96036c3cb1df895ff25bf47828c670ce5eef7d30acb4b41bf0dc2fe73835ec2f5c192f6a5696d32286d3b636ad944049161376362d8579de775709
6
+ metadata.gz: 4d42ebf848fb2c8375802a2fd5d66afbb4e650d93c8f84cba94cc64de1dbf0d32e173474601c84719a37c69d240eaee9494d053b38fc1aa0dfd4fe22ced9946d
7
+ data.tar.gz: c47f7441ac94761138de35240fa25c70fef4dfefda3a43490f8c048186bce20ae7ffa4b443dc29c34f5122bb7bc403daf4cae603b5eae4d898dce23a98077257
data/README.md CHANGED
@@ -23,7 +23,7 @@ PostgreSQL output plugin for Embulk loads records to PostgreSQL.
23
23
  - **max_retry_wait** upper limit of retry wait, which will be doubled at every retry (integer, default: 1800000 (30 minutes))
24
24
  - **mode**: "insert", "insert_direct", "truncate_insert", "replace" or "merge". See below. (string, required)
25
25
  - **merge_keys**: key column names for merging records in merge mode (string array, required in merge mode if table doesn't have primary key)
26
- - **merge_rule**: list of column assignments for updating existing records used in merge mode, for example `foo = foo + S.foo`. (string array, default: always overwrites with new values)
26
+ - **merge_rule**: list of column assignments for updating existing records used in merge mode, for example `foo = foo + S.foo` (`S` means source table). (string array, default: always overwrites with new values)
27
27
  - **ssl**: enables SSL. data will be encrypted but CA or certification will not be verified (boolean, default: false)
28
28
  - **batch_size**: size of a single batch insert (integer, default: 16777216)
29
29
  - **default_timezone**: If input column type (embulk type) is timestamp, this plugin needs to format the timestamp into a SQL string. This default_timezone option is used to control the timezone. You can overwrite timezone for each columns using column_options option. (string, default: `UTC`)
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.7.1
4
+ version: 0.7.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sadayuki Furuhashi
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-11-25 00:00:00.000000000 Z
11
+ date: 2016-12-19 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.7.1.jar
23
- - classpath/embulk-output-postgresql-0.7.1.jar
22
+ - classpath/embulk-output-jdbc-0.7.2.jar
23
+ - classpath/embulk-output-postgresql-0.7.2.jar
24
24
  - classpath/postgresql-9.4-1205-jdbc41.jar
25
25
  - lib/embulk/output/postgresql.rb
26
26
  - src/main/java/org/embulk/output/PostgreSQLOutputPlugin.java