embulk-input-oracle 0.5.0 → 0.6.0
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4044e4bd32bdc9835fe6fa4a040ae1fc29f129aa
|
|
4
|
+
data.tar.gz: 41473973ca2fc1b4da5e0232be2c71178f876348
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 97fd393b29114b1bbfb6a6a99a8753b974debb813689f566bfc399f267401cd23bc79bdbfe6138a5772178293add80922ef9471c9012647e8cb437f5322ed70d
|
|
7
|
+
data.tar.gz: b380862f4926c0e717e9fb1efef34b802124ca79ade668df54b6e8c3fc15bccb75d77b363166a6a74e7e499d87100f62c26c626e5c2a2d61e6dc9e5525e5e023
|
data/README.md
CHANGED
|
@@ -31,7 +31,7 @@ Oracle input plugins for Embulk loads records from Oracle.
|
|
|
31
31
|
- **type**: Column values are converted to this embulk type.
|
|
32
32
|
Available values options are: `boolean`, `long`, `double`, `string`, `timestamp`).
|
|
33
33
|
By default, the embulk type is determined according to the sql type of the column (or value_type if specified).
|
|
34
|
-
- **timestamp_format**: If the sql type of the column is `date`/`time`/`datetime` and the embulk type is `string`, column values are formatted by this timestamp_format. And if the embulk type is `timestamp`, this timestamp_format
|
|
34
|
+
- **timestamp_format**: If the sql type of the column is `date`/`time`/`datetime` and the embulk type is `string`, column values are formatted by this timestamp_format. And if the embulk type is `timestamp`, this timestamp_format may be used in the output plugin. For example, stdout plugin use the timestamp_format, but *csv formatter plugin doesn't use*. (string, default : `%Y-%m-%d` for `date`, `%H:%M:%S` for `time`, `%Y-%m-%d %H:%M:%S` for `timestamp`)
|
|
35
35
|
- **timezone**: If the sql type of the column is `date`/`time`/`datetime` and the embulk type is `string`, column values are formatted in this timezone.
|
|
36
36
|
(string, value of default_timezone option is used by default)
|
|
37
37
|
|
|
Binary file
|
|
Binary file
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: embulk-input-oracle
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.6.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sadayuki Furuhashi
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-07-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Selects records from a table.
|
|
14
14
|
email:
|
|
@@ -22,8 +22,8 @@ files:
|
|
|
22
22
|
- lib/embulk/input/oracle.rb
|
|
23
23
|
- src/main/java/org/embulk/input/OracleInputPlugin.java
|
|
24
24
|
- src/main/java/org/embulk/input/oracle/OracleInputConnection.java
|
|
25
|
-
- classpath/embulk-input-jdbc-0.
|
|
26
|
-
- classpath/embulk-input-oracle-0.
|
|
25
|
+
- classpath/embulk-input-jdbc-0.6.0.jar
|
|
26
|
+
- classpath/embulk-input-oracle-0.6.0.jar
|
|
27
27
|
homepage: https://github.com/embulk/embulk-input-jdbc
|
|
28
28
|
licenses:
|
|
29
29
|
- Apache 2.0
|
|
Binary file
|