embulk-output-vertica 0.2.4 → 0.2.5
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 +4 -4
- data/CHANGELOG.md +6 -0
- data/embulk-output-vertica.gemspec +1 -1
- data/lib/embulk/output/vertica.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6177946678322483b3c2cac45c066b7047d63920
|
|
4
|
+
data.tar.gz: bbbc42515eeb5b9afb30de32b21282b673045962
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dee3281d467a60830743c366bf2ecbc26eb8985cf609ee79282a37400fbe2c7adedeb7682d4fe10582fe585d78123c853b8c238e6cbb04932582d93aff5b7c56
|
|
7
|
+
data.tar.gz: 084f52b63d20de11b3a66163b3b111a1cf4275d76d95f399d4c42fbb3b4852c8598861d2136f93ba43400d9b0f662ab67fc536e0905e366de23af373f71d42fc
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |spec|
|
|
2
2
|
spec.name = "embulk-output-vertica"
|
|
3
|
-
spec.version = "0.2.
|
|
3
|
+
spec.version = "0.2.5"
|
|
4
4
|
spec.authors = ["eiji.sekiya", "Naotoshi Seo"]
|
|
5
5
|
spec.email = ["eiji.sekiya.0326@gmail.com", "sonots@gmail.com"]
|
|
6
6
|
spec.summary = "Vertica output plugin for Embulk"
|
|
@@ -61,7 +61,7 @@ module Embulk
|
|
|
61
61
|
begin
|
|
62
62
|
# obtain an array of task_reports where one report is of a task
|
|
63
63
|
task_reports = yield(task)
|
|
64
|
-
Embulk.logger.info { "embulk-output-vertica: task_reports: #{task_reports}" }
|
|
64
|
+
Embulk.logger.info { "embulk-output-vertica: task_reports: #{task_reports.to_json}" }
|
|
65
65
|
connect(task) do |jv|
|
|
66
66
|
query(jv, %[CREATE TABLE IF NOT EXISTS #{quoted_schema}.#{quoted_table} (#{sql_schema})])
|
|
67
67
|
query(jv, %[INSERT INTO #{quoted_schema}.#{quoted_table} SELECT * FROM #{quoted_schema}.#{quoted_temp_table}])
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: embulk-output-vertica
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- eiji.sekiya
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2015-10-
|
|
12
|
+
date: 2015-10-26 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: jvertica
|