tapsoob 0.4.17-java → 0.4.21-java

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: 7dde8f342520a6d2dd96362628bdd3d2ccf91fbc3590ee27a1b09e5ad264a4cd
4
- data.tar.gz: 0e3df729ea764e07bdc1631483892a5313d93b136b4fb7c01392a8de88505ec2
3
+ metadata.gz: 7f23fae83b548006f4c32b04c4996ec88de7d631026c886e0abd221368b89382
4
+ data.tar.gz: 19c023656dbb303a860d0396f0f0f2ce734d90b1998515f0ecaec53e4939fd7f
5
5
  SHA512:
6
- metadata.gz: e5e2418c63d6be6f1f03252160ce27dc822cc892ae82ee7fa620ca5b9638c103d24577f180a34bd327557bf38e13874f8bb94eaa7245a47d259bc3746a7409a8
7
- data.tar.gz: 889704b167c445922382e8c379ef1277ccd94d1cb96f4a48e089c7bef878467f5758de981be6ce91a079396b623791b5d5d1cddab29513c2aa51531c99630946
6
+ metadata.gz: 9390e1a84e41f650e204fea3162737a1b52c9a6bb08f884d36e4a29b9df45eb2dffffde1cac8dad728cb36b9897805dc482a8690d6e5f05679455edc071203b3
7
+ data.tar.gz: afb4fd2228e48a463d5d18a3f63f379ec2201ddd5e405c2293a7b3bb08d7e2522160d413e0e3bea234d4e69b6f998a32951337ba078ad180bdd4dfc33a73cf98
@@ -393,7 +393,7 @@ module Tapsoob
393
393
  log.info "#{tables.size} tables, #{format_number(record_count)} records"
394
394
 
395
395
  tables.each do |table_name, count|
396
- next unless File.exists?(File.join(dump_path, "data", "#{table_name}.json"))
396
+ next unless File.exists?(File.join(dump_path, "data", "#{table_name}.json")) || JSON.parse(File.read(File.join(dump_path, "data", "#{table}.json")))["data"].size == 0
397
397
  db[table_name.to_sym].truncate if @opts[:purge]
398
398
  stream = Tapsoob::DataStream.factory(db, {
399
399
  :table_name => table_name,
@@ -485,7 +485,7 @@ module Tapsoob
485
485
 
486
486
  def fetch_local_tables_info
487
487
  tables_with_counts = {}
488
- tbls = Dir.glob(File.join(dump_path, "data", "*")).map { |path| File.basename(path, ".json") }
488
+ tbls = Dir.glob(File.join(dump_path, "schemas", "*")).map { |path| File.basename(path, ".rb") }
489
489
  tbls.each do |table|
490
490
  if File.exists?(File.join(dump_path, "data", "#{table}.json"))
491
491
  data = JSON.parse(File.read(File.join(dump_path, "data", "#{table}.json")))
data/lib/tapsoob/utils.rb CHANGED
@@ -75,14 +75,19 @@ 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
+ db.extension :schema_dumper # Add schema dumper extension in case it hasn't been added until now
78
79
  res[:types] = schema.map do |c|
79
- case db.column_schema_to_ruby_type(c.last[:type])[:type]
80
+ case db.column_schema_to_ruby_type(c.last)[:type]
80
81
  when BigDecimal
81
82
  "float"
83
+ when :Bignum
84
+ "integer"
82
85
  when File
83
86
  "blob"
87
+ when TrueClass
88
+ "boolean"
84
89
  else
85
- db.column_schema_to_ruby_type(c.last[:type])[:type].to_s.downcase
90
+ db.column_schema_to_ruby_type(c.last)[:type].to_s.downcase
86
91
  end
87
92
  end unless schema.empty?
88
93
 
@@ -1,4 +1,4 @@
1
1
  # -*- encoding : utf-8 -*-
2
2
  module Tapsoob
3
- VERSION = "0.4.17".freeze
3
+ VERSION = "0.4.21".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.17
4
+ version: 0.4.21
5
5
  platform: java
6
6
  authors:
7
7
  - Félix Bellanger