bulk_dependency_eraser 4.2.1 → 4.2.2
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/bulk_dependency_eraser/builder.rb +2 -1
- data/lib/bulk_dependency_eraser/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: 8efe5bca3c57d245dc00fcb0d04a57bab5dc9eb19d81e55be43a56e6adb7752c
|
4
|
+
data.tar.gz: b6b2d2bf30e7dd964d5032bd61ed1e57f820bec667dd3435c79567e24d6a0265
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b7981de1665f8c6c7f7c2054c446a09edaa6add210481e091d2034f086eb9703bd619b23de29d03777bb8445b9fc7902329af8ce262204510e0e7695ebe380be
|
7
|
+
data.tar.gz: 42cfbfdb8ad934d9b4d1a806e9da158e82a2ddb2b38cbee790423c5ff046aa3517370f12bd6e5cad00f6ec7db57fb6ee3082bbcb6faefadc866f6332919a6143
|
@@ -232,7 +232,8 @@ module BulkDependencyEraser
|
|
232
232
|
query_primary_keys.each_with_index do |primary_key, plucked_index|
|
233
233
|
query_additional_identifiers[primary_key] ||= {}
|
234
234
|
results_per_additional_column.each do |column, column_results|
|
235
|
-
|
235
|
+
# stringify the column key. All keys in the additional_identifiers are strings; The unification is nice and also JSONable.
|
236
|
+
query_additional_identifiers[primary_key][column.to_s] = column_results[plucked_index]
|
236
237
|
end
|
237
238
|
end
|
238
239
|
|