embulk-output-bigobject 0.4.4 → 0.4.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4a1f4e9350156b99f2607618762c641c774cd573
4
- data.tar.gz: cfeb2e35a4d6d3ead4d5c4cd910e578e65f57f7a
3
+ metadata.gz: ef8bcb1f718af068fbd06212695421ebf7dc0f1b
4
+ data.tar.gz: 06ab30a8366d909fb00850560d328ee1e1125be9
5
5
  SHA512:
6
- metadata.gz: 8423a4ac35e7ba3843cfd2da2ff7b0255390b78d3596e19e71565c496359ffdd4d814c734314a541b4550e4793e15ceba9468fc613e5fb6b04d96172c81811dd
7
- data.tar.gz: 1374988497f7158f5c4f07aa159a91be58834c64c04521e74795f48acd8d57903b14a7ce53b27574d52b43a093e963bc8c705405f7445abdb256d05f0f50035d
6
+ metadata.gz: c4cb6ceddd4c48afc581b4891f0c35a4101926fdb01170bdab38c96c320cb35585b064dd626883d2ff8a8a86a042df9c04231534e82e433d09c1d307681ddecd
7
+ data.tar.gz: 906155307452bc5765ade2e6db67afe2bc37802062b47e785ba7d8530d83ba901d182ce9979a40b2d8b03ae49f8b6ab1fb93bbcfe124b041e72e5421af824e45
@@ -1,7 +1,7 @@
1
1
 
2
2
  Gem::Specification.new do |spec|
3
3
  spec.name = "embulk-output-bigobject"
4
- spec.version = "0.4.4"
4
+ spec.version = "0.4.5"
5
5
  spec.authors = ["Cheng-Ching Huang"]
6
6
  spec.summary = "Bigobject output plugin for Embulk"
7
7
  spec.description = "Dumps records to Bigobject."
@@ -170,9 +170,9 @@ module Embulk
170
170
  keys.push co["name"] if co["is_key"]
171
171
  end
172
172
  if keys.length == 0
173
- "CREATE TABLE #{tbl} #{rowcol} (#{bo_table_schema})"
173
+ "CREATE #{rowcol} TABLE #{tbl} (#{bo_table_schema})"
174
174
  else
175
- "CREATE TABLE #{tbl} #{rowcol} (#{bo_table_schema} KEY(#{keys.join(',')}))"
175
+ "CREATE #{rowcol} TABLE #{tbl} (#{bo_table_schema} KEY(#{keys.join(',')}))"
176
176
  end
177
177
  end
178
178
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: embulk-output-bigobject
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
  - Cheng-Ching Huang