embulk-output-postgresql 0.7.0 → 0.7.1

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: 2c298461d74fa5178fa796515494983ce4952825
4
- data.tar.gz: e161bb7cac34a3dc78380b3b37e221a78439455f
3
+ metadata.gz: 1024f09c19b16a9e57f038d0f7e9d6b37be96d48
4
+ data.tar.gz: 4677e033f38d9470258e22b931b7e3f2473f9dba
5
5
  SHA512:
6
- metadata.gz: 353f8e723b18956d49aea114e1e82cbb3a9ed56045b3173d8a83ea3cec2ce9f4e8ffc85e14551df0570633b654415d6318b20e493f7f1c5571ea2bd79df7169e
7
- data.tar.gz: 57afcac2900a0222a55f2a93556b0d1bb9e482c529fb626586704210a15588897c73f82df603e823537ca01013de2af327c4b554036d8a4e86ad4dc5c95fbe52
6
+ metadata.gz: 047378a8d8c5a259572264a7d532479f63aadd54f9334c2be314ba59025e6ec56f148ec1a8c328fa05bf4074c35728b7936b0b5ac483524d1030e5dc47a72e13
7
+ data.tar.gz: 528b022cdc96036c3cb1df895ff25bf47828c670ce5eef7d30acb4b41bf0dc2fe73835ec2f5c192f6a5696d32286d3b636ad944049161376362d8579de775709
data/README.md CHANGED
@@ -32,6 +32,7 @@ PostgreSQL output plugin for Embulk loads records to PostgreSQL.
32
32
  - **value_type**: This plugin converts input column type (embulk type) into a database type to build a INSERT statement. This value_type option controls the type of the value in a INSERT statement. (string, default: depends on the sql type of the column. Available values options are: `byte`, `short`, `int`, `long`, `double`, `float`, `boolean`, `string`, `nstring`, `date`, `time`, `timestamp`, `decimal`, `json`, `null`, `pass`)
33
33
  - **timestamp_format**: If input column type (embulk type) is timestamp and value_type is `string` or `nstring`, this plugin needs to format the timestamp value into a string. This timestamp_format option is used to control the format of the timestamp. (string, default: `%Y-%m-%d %H:%M:%S.%6N`)
34
34
  - **timezone**: If input column type (embulk type) is timestamp, this plugin needs to format the timestamp value into a SQL string. In this cases, this timezone option is used to control the timezone. (string, value of default_timezone option is used by default)
35
+ - **after_load**: if set, this SQL will be executed after loading all records.
35
36
 
36
37
  ### Modes
37
38
 
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.0
4
+ version: 0.7.1
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-10-26 00:00:00.000000000 Z
11
+ date: 2016-11-25 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.0.jar
23
- - classpath/embulk-output-postgresql-0.7.0.jar
22
+ - classpath/embulk-output-jdbc-0.7.1.jar
23
+ - classpath/embulk-output-postgresql-0.7.1.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