embulk-input-jdbc 0.6.2 → 0.6.3
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 180e855fc538b6686ff6c644e83e54399c6c040f
|
4
|
+
data.tar.gz: 21293c5bc4438c2c52fe21e00ecb88204eae8981
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1a543fdf561b51296d5eb08052b71662ae1f9ee901160ebc093d4f8ecb254f73ed89d621f271e171bf54932701516848caf30b7d58ff093e8ec647c1ffacf67b
|
7
|
+
data.tar.gz: 34c2d0c340f462ff2f0d2670d9f4993eb8cec044d5fd54d17b148bf85e97c39f91ab1ee90b637c445ec88c16845d932351950d3ace344d9b8a47ca23b3a87b28
|
Binary file
|
@@ -56,6 +56,11 @@ public abstract class AbstractColumnGetter implements ColumnGetter, ColumnVisito
|
|
56
56
|
to.setNull(column);
|
57
57
|
}
|
58
58
|
|
59
|
+
@Override
|
60
|
+
public void jsonColumn(Column column) {
|
61
|
+
throw new UnsupportedOperationException("This plugin doesn't support json type. Please try to upgrade version of the plugin using 'embulk gem update' command. If the latest version still doesn't support json type, please contact plugin developers, or change configuration of input plugin not to use json type.");
|
62
|
+
}
|
63
|
+
|
59
64
|
@Override
|
60
65
|
public void timestampColumn(Column column)
|
61
66
|
{
|
@@ -25,6 +25,11 @@ public abstract class AbstractTimestampColumnGetter
|
|
25
25
|
to.setString(column, timestampFormatter.format(value));
|
26
26
|
}
|
27
27
|
|
28
|
+
@Override
|
29
|
+
public void jsonColumn(Column column) {
|
30
|
+
throw new UnsupportedOperationException("This plugin doesn't support json type. Please try to upgrade version of the plugin using 'embulk gem update' command. If the latest version still doesn't support json type, please contact plugin developers, or change configuration of input plugin not to use json type.");
|
31
|
+
}
|
32
|
+
|
28
33
|
@Override
|
29
34
|
public void timestampColumn(Column column)
|
30
35
|
{
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: embulk-input-jdbc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.3
|
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-01-
|
11
|
+
date: 2016-01-14 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Selects records from a table.
|
14
14
|
email:
|
@@ -40,7 +40,7 @@ files:
|
|
40
40
|
- src/main/java/org/embulk/input/jdbc/getter/StringColumnGetter.java
|
41
41
|
- src/main/java/org/embulk/input/jdbc/getter/TimeColumnGetter.java
|
42
42
|
- src/main/java/org/embulk/input/jdbc/getter/TimestampColumnGetter.java
|
43
|
-
- classpath/embulk-input-jdbc-0.6.
|
43
|
+
- classpath/embulk-input-jdbc-0.6.3.jar
|
44
44
|
homepage: https://github.com/embulk/embulk-input-jdbc
|
45
45
|
licenses:
|
46
46
|
- Apache 2.0
|