tapsoob 0.4.16-java → 0.4.17-java

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
  SHA256:
3
- metadata.gz: 5552561bbd6689d39f15fb5f2981aedc8a23bcbeee6a48c879cfdd95787b8997
4
- data.tar.gz: 1dd506b6483e1d2bb29805adeea4bd58fd267b30d8332ea32631121ebc022669
3
+ metadata.gz: 7dde8f342520a6d2dd96362628bdd3d2ccf91fbc3590ee27a1b09e5ad264a4cd
4
+ data.tar.gz: 0e3df729ea764e07bdc1631483892a5313d93b136b4fb7c01392a8de88505ec2
5
5
  SHA512:
6
- metadata.gz: 937f72eca25fdf75e6332aedda245bff93300ec31693a96363e4a99260927e59aeef108cfb76e636619201492c627cd6b336674c9871342d4745f5b279c42581
7
- data.tar.gz: 288b6bc189ef4fee8986febf34d0d7857843b4bc54170fb0b8c26ac5e6de604605e6ec41cd27f1ef537ad92aeac6a472e5b4100c5e7978c66b3e5d4ad7960a53
6
+ metadata.gz: e5e2418c63d6be6f1f03252160ce27dc822cc892ae82ee7fa620ca5b9638c103d24577f180a34bd327557bf38e13874f8bb94eaa7245a47d259bc3746a7409a8
7
+ data.tar.gz: 889704b167c445922382e8c379ef1277ccd94d1cb96f4a48e089c7bef878467f5758de981be6ce91a079396b623791b5d5d1cddab29513c2aa51531c99630946
@@ -75,7 +75,7 @@ module Tapsoob
75
75
  state[:chunksize] = fetch_chunksize
76
76
  ds = table.order(*order_by).limit(state[:chunksize], state[:offset])
77
77
  log.debug "DataStream#fetch_rows SQL -> #{ds.sql}"
78
- rows = Tapsoob::Utils.format_data(ds.all,
78
+ rows = Tapsoob::Utils.format_data(db, ds.all,
79
79
  :string_columns => string_columns,
80
80
  :schema => db.schema(table_name),
81
81
  :table => table_name
data/lib/tapsoob/utils.rb CHANGED
@@ -37,7 +37,7 @@ module Tapsoob
37
37
  data.unpack("m").first
38
38
  end
39
39
 
40
- def format_data(data, opts = {})
40
+ def format_data(db, data, opts = {})
41
41
  return {} if data.size == 0
42
42
  string_columns = opts[:string_columns] || []
43
43
  schema = opts[:schema] || []
@@ -75,7 +75,16 @@ Data : #{data}
75
75
  res = { table_name: table, header: header, data: only_data }
76
76
 
77
77
  # Add types if schema isn't empty
78
- res[:types] = schema.map { |c| c.last[:type] } unless schema.empty?
78
+ res[:types] = schema.map do |c|
79
+ case db.column_schema_to_ruby_type(c.last[:type])[:type]
80
+ when BigDecimal
81
+ "float"
82
+ when File
83
+ "blob"
84
+ else
85
+ db.column_schema_to_ruby_type(c.last[:type])[:type].to_s.downcase
86
+ end
87
+ end unless schema.empty?
79
88
 
80
89
  res
81
90
  end
@@ -1,4 +1,4 @@
1
1
  # -*- encoding : utf-8 -*-
2
2
  module Tapsoob
3
- VERSION = "0.4.16".freeze
3
+ VERSION = "0.4.17".freeze
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tapsoob
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.16
4
+ version: 0.4.17
5
5
  platform: java
6
6
  authors:
7
7
  - Félix Bellanger
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2021-07-08 00:00:00.000000000 Z
12
+ date: 2021-10-19 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  requirement: !ruby/object:Gem::Requirement