zuora_connect 2.0.57m → 2.0.57n
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/app/models/zuora_connect/app_instance_base.rb +1 -1
- data/lib/zuora_connect/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: 7d0c8c68944334a9f67bb9cd06ff2d22edf119e09b0f3fb09a351741b8ccc8b5
|
4
|
+
data.tar.gz: f09fa869a9898fb75c19c8148308d2bf0bae48e229a4ac06582d1c7dd3e9521b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 75625b6d8c46afb337b6be99b213be70d97c4a6e15a0e2f535a7a67c414658207c45c879c98912e052b39b29271b3a746105c54e0469a991c44f9420e2987d75
|
7
|
+
data.tar.gz: 37e1da652958136d6a7923ac3bcbe3164d945960b3809c11df15df956e8adff1ef4c8313fb1cdc1f0d653935e31e6efdb4da546a5f49a2406040375340210bd0
|
@@ -1128,7 +1128,7 @@ module ZuoraConnect
|
|
1128
1128
|
JOIN pg_class t ON l.relation = t.oid AND t.relkind = 'r'
|
1129
1129
|
WHERE t.relname = '#{aggregate_name}' AND l.mode ='AccessExclusiveLock';
|
1130
1130
|
eos
|
1131
|
-
raise ZuoraConnect::Exceptions::Error.new(
|
1131
|
+
raise ZuoraConnect::Exceptions::Error.new("An existing lock detected while dropping table '#{aggregate_name}'") if sql_result.count > 0
|
1132
1132
|
|
1133
1133
|
if index_table
|
1134
1134
|
ActiveRecord::Base.connection.execute('SELECT "shared_extensions".refresh_aggregate_table(\'%s\', \'%s\', %s, \'Index\', \'{%s}\');' % [aggregate_name, table_name, ActiveRecord::Base.connection.quote(where_clause), ignore_indexes.map { |index| "\"#{index}\"" }.join(',')])
|