embulk-output-oracle 0.8.0 → 0.8.1

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: 6bd2872db2b537172e9a0c3806efc58a6c50c5dd
4
- data.tar.gz: 1007a036861e09684d2c01dd76725ce11e7b7a62
3
+ metadata.gz: af993fed6abf760e8d1c85bc891aca6d2542d27a
4
+ data.tar.gz: 131b216c57981aee2e752f07aa8e57c98ced79fb
5
5
  SHA512:
6
- metadata.gz: 765bdea93f6899970ab889058eba5cf35cfcaeb4ad72c224d3de456f7db0f880a2ab486824d85afa065e0a0d6e165e487ab05c6ad66d3a621b02fba1030e5301
7
- data.tar.gz: cf43413a50c8ea35dedeb0b570bddac97259df1cc35fca60db68de9efe4ed487102fa3dc4cea6d553d0b0b9c13604268cd62f15b65106bbe70aaeacea1e167ec
6
+ metadata.gz: cee6cbea473848c8571b970e476a695bb1d5833b4e68d68193e4da1d0ef38999fb71a0ca030d40c5a462d42929333ebfc7d65561517f14c73b3f3a94a0bddc1b
7
+ data.tar.gz: 8d193ad27f24393b33422ffc866b279a7cc556b94ac61b6fad3e207f1d4ba08717519cbfc3b554813611dbe5d30ba0fea6e57f359435533364b18c54384b52b5
data/README.md CHANGED
@@ -16,16 +16,16 @@ Oracle output plugin for Embulk loads records to Oracle.
16
16
  - **user**: database login user name (string, required)
17
17
  - **password**: database login password (string, default: "")
18
18
  - **database**: destination database name (string, required if url is not set or insert_method is "oci")
19
- - **schema** destination schema name (string, optional)
19
+ - **schema**: destination schema name (string, optional)
20
20
  - **temp_schema**: schema name for intermediate tables. by default, intermediate tables will be created in the same schema as destination table. replace mode doesn't support temp_schema. (string, optional)
21
21
  - **url**: URL of the JDBC connection (string, optional)
22
22
  - **table**: destination table name (string, required)
23
- - **create_table_constraint** table constraint added to `CREATE TABLE` statement, like `CREATE TABLE <table_name> (<column1> <type1>, <column2> <type2>, ..., <create_table_constraint>) <create_table_option>`.
24
- - **create_table_option** table option added to `CREATE TABLE` statement, like `CREATE TABLE <table_name> (<column1> <type1>, <column2> <type2>, ..., <create_table_constraint>) <create_table_option>`.
23
+ - **create_table_constraint**: table constraint added to `CREATE TABLE` statement, like `CREATE TABLE <table_name> (<column1> <type1>, <column2> <type2>, ..., <create_table_constraint>) <create_table_option>`.
24
+ - **create_table_option**: table option added to `CREATE TABLE` statement, like `CREATE TABLE <table_name> (<column1> <type1>, <column2> <type2>, ..., <create_table_constraint>) <create_table_option>`.
25
25
  - **options**: extra connection properties (hash, default: {})
26
- - **retry_limit** max retry count for database operations (integer, default: 12)
27
- - **retry_wait** initial retry wait time in milliseconds (integer, default: 1000 (1 second))
28
- - **max_retry_wait** upper limit of retry wait, which will be doubled at every retry (integer, default: 1800000 (30 minutes))
26
+ - **retry_limit**: max retry count for database operations (integer, default: 12)
27
+ - **retry_wait**: initial retry wait time in milliseconds (integer, default: 1000 (1 second))
28
+ - **max_retry_wait**: upper limit of retry wait, which will be doubled at every retry (integer, default: 1800000 (30 minutes))
29
29
  - **mode**: "insert", "insert_direct", "truncate_insert", "replace" or "merge". See below. (string, required)
30
30
  - **merge_keys**: key column names for merging records in merge mode (string array, required in merge mode if table doesn't have primary key)
31
31
  - **merge_rule**: list of column assignments for updating existing records used in merge mode, for example `foo = T.foo + S.foo` (`T` means target table and `S` means source table). (string array, default: always overwrites with new values)
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.8.0
4
+ version: 0.8.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: 2017-12-26 00:00:00.000000000 Z
11
+ date: 2018-11-16 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.0.jar
23
- - classpath/embulk-output-oracle-0.8.0.jar
22
+ - classpath/embulk-output-jdbc-0.8.1.jar
23
+ - classpath/embulk-output-oracle-0.8.1.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