embulk-input-vertica 0.1.0 → 0.1.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: 84ccf7962b2423d77edc6dcef723742cbcc985ef
4
- data.tar.gz: 227baafc67c6ffd63061589bb1297fe3270c0655
3
+ metadata.gz: 42c918e05a7a36c3d44401a4fcf2720612144b16
4
+ data.tar.gz: 4c2aa39ef52247884cd8a461ae4dd3c22e5207d2
5
5
  SHA512:
6
- metadata.gz: e840f624899f88c26d8855660841080c40105856148b4d456281978d2550f336f6ac28e5cc9b2bfdffc1af54369c7a9251a61314fea7649b7ad9050332a731aa
7
- data.tar.gz: 7f81375fc1e398a2057e04087d9d6b47bd50688796da74c0264b14550fbcad012a56d2463de33c9dea935d2b3d110934ed1d0d6c1a8aadf9b35554db70f9b0c0
6
+ metadata.gz: e682ae3bdd721a275acbc348ba37d32b78b161f9ced536daf126bfd65c5910856fba1d1f841b88899143e9c6337dccfdd97432758d310e52162af324a1d052a4
7
+ data.tar.gz: 893067fb4e42f2e5b07c01b0a39f4325cb84ecbe91a866d06cdb728509a3b89612073a14fbd5067ebf4ecb9ebf72c307c3a9e18761427a032c3b4d7e80c5270c
data/CHANGELOG.md ADDED
@@ -0,0 +1,9 @@
1
+ # 0.1.1
2
+
3
+ Changes:
4
+
5
+ * Update embulk-input-jdbc from 0.6.4 to 0.7.0
6
+
7
+ # 0.1.0
8
+
9
+ initial version
data/README.md CHANGED
@@ -10,7 +10,7 @@ Vertica input plugins for Embulk loads records from vertica.
10
10
  ## Configuration
11
11
 
12
12
  - **host**: database host name (string, required)
13
- - **port**: database port number (integer, 5432)
13
+ - **port**: database port number (integer, 5433)
14
14
  - **user**: database login user name (string, required)
15
15
  - **password**: database login password (string, default: "")
16
16
  - **database**: destination database name (string, required)
@@ -18,7 +18,7 @@ Vertica input plugins for Embulk loads records from vertica.
18
18
  - **fetch_rows**: number of rows to fetch one time (used for java.sql.Statement#setFetchSize) (integer, default: 10000)
19
19
  - **connect_timeout**: timeout for establishment of a database connection. (integer (seconds), default: 300)
20
20
  - **socket_timeout**: timeout for socket read operations. 0 means no timeout. (integer (seconds), default: 1800)
21
- - **ssl**: enables SSL. data will be encrypted but CA or certification will not be verified (boolean, default: false)
21
+ - **ssl**: ~~enables SSL. data will be encrypted but CA or certification will not be verified (boolean, default: false)~~ Not supported yet
22
22
  - **options**: extra JDBC properties (hash, default: {})
23
23
  - If you write SQL directly,
24
24
  - **query**: SQL to run (string)
data/build.gradle CHANGED
@@ -16,7 +16,7 @@ configurations {
16
16
  provided
17
17
  }
18
18
 
19
- version = "0.1.0"
19
+ version = "0.1.1"
20
20
 
21
21
  sourceCompatibility = 1.7
22
22
  targetCompatibility = 1.7
@@ -26,7 +26,7 @@ dependencies {
26
26
  provided "org.embulk:embulk-core:0.8.2"
27
27
  testCompile "junit:junit:4.+"
28
28
 
29
- compile "org.embulk.input.jdbc:embulk-input-jdbc:0.6.4"
29
+ compile "org.embulk.input.jdbc:embulk-input-jdbc:0.7.0"
30
30
  compile files('lib/vertica-jdbc-7.0.1-0.jar')
31
31
  // compile files('lib/vertica-jdbc-7.2.1-0.jar')
32
32
  }
@@ -79,7 +79,7 @@ task gemspec {
79
79
  Gem::Specification.new do |spec|
80
80
  spec.name = "${project.name}"
81
81
  spec.version = "${project.version}"
82
- spec.authors = ["sonots"]
82
+ spec.authors = ["Naotoshi Seo"]
83
83
  spec.summary = %[Vertica input plugin for Embulk]
84
84
  spec.description = %[Loads records from Vertica.]
85
85
  spec.email = ["sonots@gmail.com"]
File without changes
File without changes
@@ -81,7 +81,8 @@ public class VerticaInputPlugin
81
81
  VerticaInputConnection c = new VerticaInputConnection(con, t.getSchema());
82
82
  con = null;
83
83
  return c;
84
- } finally {
84
+ }
85
+ finally {
85
86
  if (con != null) {
86
87
  con.close();
87
88
  }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: embulk-input-vertica
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
- - sonots
7
+ - Naotoshi Seo
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-02-17 00:00:00.000000000 Z
11
+ date: 2016-03-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -46,11 +46,12 @@ extensions: []
46
46
  extra_rdoc_files: []
47
47
  files:
48
48
  - .gitignore
49
+ - CHANGELOG.md
49
50
  - COPYING
50
51
  - README.md
51
52
  - build.gradle
52
- - checkstyle/checkstyle.xml
53
- - checkstyle/default.xml
53
+ - config/checkstyle/checkstyle.xml
54
+ - config/checkstyle/default.xml
54
55
  - example/example.yml
55
56
  - gradle/wrapper/gradle-wrapper.jar
56
57
  - gradle/wrapper/gradle-wrapper.properties
@@ -61,8 +62,12 @@ files:
61
62
  - lib/vertica-jdbc-7.2.1-0.jar
62
63
  - src/main/java/org/embulk/input/VerticaInputPlugin.java
63
64
  - src/main/java/org/embulk/input/vertica/VerticaInputConnection.java
64
- - classpath/embulk-input-jdbc-0.6.4.jar
65
- - classpath/embulk-input-vertica-0.1.0.jar
65
+ - classpath/embulk-core-0.8.8.jar
66
+ - classpath/embulk-input-jdbc-0.7.0.jar
67
+ - classpath/embulk-input-vertica-0.1.1.jar
68
+ - classpath/joda-time-2.9.2.jar
69
+ - classpath/jruby-complete-9.0.5.0.jar
70
+ - classpath/msgpack-core-0.8.3.jar
66
71
  - classpath/vertica-jdbc-7.0.1-0.jar
67
72
  homepage: https://github.com/sonots/embulk-input-vertica
68
73
  licenses: