activerecord-snapshot 0.7.0 → 0.8.0

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: aaf065d4a0ded30d3724f35647e79452b835c9c7e6cd0cda95044b4a4eb2a1c1
4
- data.tar.gz: a5633603f87e91e20a41fb9509372c61acc8830d70ea3b1cf5e4c0b89c6ac9b6
3
+ metadata.gz: df0b6d4cfd32a2749f92fa402eb4bcf3c11cadd7639eed131e4aa303339e2a6c
4
+ data.tar.gz: 52a7c83917b568d262fb50fd16c84815605eb7046ae3faa89cf3694343f6155d
5
5
  SHA512:
6
- metadata.gz: eaf3ac77d41b025605f828e2ff50cdc223486163f690f44dd230faa50e5da000610ce6f6e4904ed5dcab7452ebf390bfdf0975c35ab281bec902422a3a54d944
7
- data.tar.gz: a8d83cb255893096bb81f7fcb6e9f0842763b1b78001b7e4d7751675b3fb3fc74b0dc060caf4a58bcd0e659e1a143e9023eb437b30622668c66a3862553d066c
6
+ metadata.gz: 42c7599a1f7addc4f89f1cbf32243fdec12a25f070c6ab66e38a829fa4259d29c510aafcf03355bf6d53a43690e36bc57a52b619b1e1ebec22d87c07c346fe9b
7
+ data.tar.gz: 8532fbb8a3356726abae122e0f02dc26bd8c0b3c68cfff9c29d59598cbc94b6956e7cbdf2c714ebde2262c40a88678199f8f6982a0ae233bfdf2d5556837d269
@@ -8,8 +8,10 @@ module ActiveRecord
8
8
  end
9
9
 
10
10
  def dump(tables:, output:)
11
- dump_command("--no-data --set-gtid-purged=OFF #{database} > #{output}") &&
12
- dump_command("--quick --set-gtid-purged=OFF #{database} #{tables.join(" ")} >> #{output}")
11
+ # the --no-tablespaces and --single-transaction flags are necessary to dump a db
12
+ # containing SQL view queries and tablespace metadata
13
+ dump_command("--no-data --single-transaction --no-tablespaces --set-gtid-purged=OFF #{database} > #{output}") &&
14
+ dump_command("--quick --single-transaction --no-tablespaces --set-gtid-purged=OFF #{database} #{tables.join(" ")} >> #{output}")
13
15
  end
14
16
 
15
17
  def self.import(*args)
@@ -1,5 +1,5 @@
1
1
  module ActiveRecord
2
2
  module Snapshot
3
- VERSION = '0.7.0'
3
+ VERSION = '0.8.0'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activerecord-snapshot
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bernardo Farah
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-01-13 00:00:00.000000000 Z
11
+ date: 2022-03-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties
@@ -173,7 +173,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
173
173
  - !ruby/object:Gem::Version
174
174
  version: '0'
175
175
  requirements: []
176
- rubygems_version: 3.0.3
176
+ rubygems_version: 3.0.3.1
177
177
  signing_key:
178
178
  specification_version: 4
179
179
  summary: Snapshots for ActiveRecord