tapsoob 0.4.16 → 0.4.17

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
  SHA256:
3
- metadata.gz: ea5e38605bcb12459e67b935a39305f0f4aacd5763a7dd9a102055b550c4f006
4
- data.tar.gz: 39a58824d38f9ab13e459a5148ee4696bf7167c0e7ef5c0c425c4c0d092540f3
3
+ metadata.gz: fb5c1ed1e219ec2410ed346a7c9cbee4e75990c706d1d8afba596d0494db4571
4
+ data.tar.gz: dff7182a190b95f92b18c348aeb0b58212e3d1b3e282c8edd38249a3fcd04af2
5
5
  SHA512:
6
- metadata.gz: 17a3ba3498cf03661399cd2109a274f8742bfaf93fc918b856463c21f2da36177af1754d3d9c40f4758b753b7e332564f79f359fa97b9fc8e0e9d34b07d4fdb5
7
- data.tar.gz: bc1c393e88b89504e83aeb85fb8e347380c2bfae86eea01841adbd58108f82094c67dfae7e309b45dcd7838807d83e2fd081c45fb5747648948303dc1eca3cd4
6
+ metadata.gz: e2c71ef98ebc8b9354aed85dc11b6530ac6d83192125a94dbf71736947286fcd7584d4b81849e02fea8a7c638dab41c51bc97671eba0ad70c5fe372e40a2aa0d
7
+ data.tar.gz: c441227f8249ff7bfe47c09b436e4fd628f186847563fbf44d75134ed0b73619248edccd0451c891ec4aa40b4f23dc3adaa615eb097e6118515d34c6c219a395
@@ -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: ruby
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
  name: ripl