embulk-output-oracle 0.7.6 → 0.7.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6bae783332773b7e53b34d8676ad6592d4354618
4
- data.tar.gz: cb529aeca71d8c03ba1009c491e8816d41814e6b
3
+ metadata.gz: 93971058f9ee1ac5b36616fb7a5631a124a4cb05
4
+ data.tar.gz: c7d7dd603f2d124a2098f87a75da7b1ece60e101
5
5
  SHA512:
6
- metadata.gz: c91850c74c82a2e5d52d4b0ba78f7ba6dd53f1b9a88efc933c0aeb22ae60091887410dade93de799d8fe6136e9c1e2289eea506d0bf2a67f202d0a9dc05c768c
7
- data.tar.gz: 4a205e6af57486fb767e3c50825737008985dc184978cb0dbcb16c3da79ae11615329697265674a9529db98df8bb7b965cdf6033cb995b90f347a716512083f7
6
+ metadata.gz: 0ebb593fd91ef1b74d4f77e9137eb05249373e22982be58e5eecd52fc13eb0c13b8110119e8085dafd5099940f60d0bcdf4c619d464e9d472301bfbfc7aa65cc
7
+ data.tar.gz: 467ec0e57d220db5865e2be4f54aa502330166b431bdbce13e69c9d43493cfbd8f83905c21b0cee68000787a3908a30254248256d1617493a7b5dd0d9f0779cf
data/README.md CHANGED
@@ -33,6 +33,7 @@ Oracle output plugin for Embulk loads records to Oracle.
33
33
  - **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`)
34
34
  - **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`)
35
35
  - **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)
36
+ - **before_load**: if set, this SQL will be executed before loading all records. In truncate_insert mode, the SQL will be executed after truncating. replace mode doesn't support this option.
36
37
  - **after_load**: if set, this SQL will be executed after loading all records.
37
38
 
38
39
  ### Modes
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: embulk-output-oracle
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.6
4
+ version: 0.7.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sadayuki Furuhashi
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-03-23 00:00:00.000000000 Z
11
+ date: 2017-04-13 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.6.jar
23
- - classpath/embulk-output-oracle-0.7.6.jar
22
+ - classpath/embulk-output-jdbc-0.7.7.jar
23
+ - classpath/embulk-output-oracle-0.7.7.jar
24
24
  - lib/embulk/native/x86_64-linux/libembulk-output-oracle-oci.so
25
25
  - lib/embulk/native/x86_64-windows/embulk-output-oracle-oci.dll
26
26
  - lib/embulk/output/oracle.rb