tapsoob 0.5.10-java → 0.5.11-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 +4 -4
- data/lib/tapsoob/operation.rb +2 -1
- data/lib/tapsoob/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b9cc05b5a498f18d7c41e0735a5918197348ce0e9de2414afbb712d20a81b621
|
4
|
+
data.tar.gz: d77fc6f1c3fabe22e745b7b2d4879b36c5abf2566ce704872a7076cadacc6ccb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ed0d3bbf1e93ea75f24c68ab71ef99d48802a36efd083cef5d47663c720b027d401a78afd6068bd7f896902c1546298953fe50fcb97d74c955e77e0b54ab7719
|
7
|
+
data.tar.gz: b7f879b32d2174e4ac7413afcaed576ae6a8532761e47ecc049b501329ff57d85ea601dfe79790cb50e6863e88b3a9740d36f8061135f5b34f27b88ed7e6ccdc
|
data/lib/tapsoob/operation.rb
CHANGED
@@ -118,6 +118,7 @@ module Tapsoob
|
|
118
118
|
|
119
119
|
def db
|
120
120
|
@db ||= Sequel.connect(database_url)
|
121
|
+
@db.extension :schema_dumper
|
121
122
|
@db.loggers << Tapsoob.log if opts[:debug]
|
122
123
|
|
123
124
|
# Set parameters
|
@@ -296,7 +297,7 @@ module Tapsoob
|
|
296
297
|
end
|
297
298
|
|
298
299
|
def fetch_tables_info
|
299
|
-
tables = db.tables
|
300
|
+
tables = db.send(:sort_dumped_tables, db.tables, {})
|
300
301
|
|
301
302
|
data = {}
|
302
303
|
apply_table_filter(tables).each do |table_name|
|
data/lib/tapsoob/version.rb
CHANGED