embulk-output-jdbc 0.4.4 → 0.4.5

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: f31cfd6a9ac7188988b1e114f160db42d04e32f8
4
- data.tar.gz: 735cb79d17704d1ae1074bf3a6b225a7090844df
3
+ metadata.gz: 6f3b78600d620d03f0332b8f0f883e19ae0fa4df
4
+ data.tar.gz: ccd435e6f57e287920de400cad04d32e0e58322c
5
5
  SHA512:
6
- metadata.gz: 2fb168e80e969473bdde51f392177f2ca1777c47512991bfa3b5cb0a592325af531d37a1290a0d84e08b1f478fccc273050c29543782829cb720ea201a73989c
7
- data.tar.gz: 5f568dd31653c80dd2f8c86290dc0a754a571b5fd45f5efcf4436e4aecb3df590e50c5737953273bfecbb28281737c60993f73a2de2aba0106e4d0b63406972c
6
+ metadata.gz: 72a1e2506e4499a24ea405d63262ddcf0fd853d6f970516b457f965a66ab28d1bd38e1963083e6aa33eaf33cad7f244a2bfa291ac7a96ae850764d2c9b99711a
7
+ data.tar.gz: afdf7da10965fa9f8c5d5c8dd5d9d584f68221c882a75db3b29c72a0d1a6306ee46b3e3759d45c6ed4d64d14b1bc79d5d033516fd63904c44b15b3cd1b968526
@@ -668,6 +668,10 @@ public abstract class AbstractJdbcOutputPlugin
668
668
  4000, 0, false, false)); // TODO size type param
669
669
  }
670
670
 
671
+ public void jsonColumn(Column column) {
672
+ 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.");
673
+ }
674
+
671
675
  public void timestampColumn(Column column)
672
676
  {
673
677
  columns.add(JdbcColumn.newGenericTypeColumn(
@@ -78,6 +78,11 @@ public class ColumnSetterVisitor
78
78
  }
79
79
  }
80
80
 
81
+ @Override
82
+ public void jsonColumn(Column column) {
83
+ 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.");
84
+ }
85
+
81
86
  @Override
82
87
  public void timestampColumn(Column column)
83
88
  {
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: embulk-output-jdbc
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.4
4
+ version: 0.4.5
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: Inserts or updates records to a table.
14
14
  email:
@@ -53,7 +53,7 @@ files:
53
53
  - src/main/java/org/embulk/output/jdbc/setter/SqlTimestampColumnSetter.java
54
54
  - src/main/java/org/embulk/output/jdbc/setter/StringColumnSetter.java
55
55
  - src/test/java/org/embulk/output/TestJdbcOutputPlugin.java
56
- - classpath/embulk-output-jdbc-0.4.4.jar
56
+ - classpath/embulk-output-jdbc-0.4.5.jar
57
57
  homepage: https://github.com/embulk/embulk-output-jdbc
58
58
  licenses:
59
59
  - Apache 2.0