embulk-input-jdbc 0.6.2 → 0.6.3

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: 094741f9a69032629c123463d03ccc32087ef6a4
4
- data.tar.gz: fe16e68258b0a6c1a522993aad4cd83846316200
3
+ metadata.gz: 180e855fc538b6686ff6c644e83e54399c6c040f
4
+ data.tar.gz: 21293c5bc4438c2c52fe21e00ecb88204eae8981
5
5
  SHA512:
6
- metadata.gz: f81c61f3fa78aa0a7db5e15d083f600df135d6771056e467af4301e41d8bb8d0416bae303b2c099d44b426b36da6dda137f29dc163e8e97fb7ec8d9ff8ef355a
7
- data.tar.gz: 93685ce7a7198af0e5e465fe7ed8b2e70ac76ceccd8428ff7cedfe24ba1b9e17758a25ba361a67a8d147f4d967d700412bd3b6dd222987767e866901659a95bc
6
+ metadata.gz: 1a543fdf561b51296d5eb08052b71662ae1f9ee901160ebc093d4f8ecb254f73ed89d621f271e171bf54932701516848caf30b7d58ff093e8ec647c1ffacf67b
7
+ data.tar.gz: 34c2d0c340f462ff2f0d2670d9f4993eb8cec044d5fd54d17b148bf85e97c39f91ab1ee90b637c445ec88c16845d932351950d3ace344d9b8a47ca23b3a87b28
@@ -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.2
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-04 00:00:00.000000000 Z
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.2.jar
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