motor-admin 0.2.24 → 0.2.25
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/motor/configs/load_from_cache.rb +1 -3
- data/lib/motor/queries/run_query.rb +8 -5
- data/lib/motor/resources/custom_sql_columns_cache.rb +1 -1
- data/lib/motor/version.rb +1 -1
- data/ui/dist/{main-8421aae2289372e89a1d.css.gz → main-0bcdc9f1a27b26d23abd.css.gz} +0 -0
- data/ui/dist/main-0bcdc9f1a27b26d23abd.js.gz +0 -0
- data/ui/dist/manifest.json +5 -5
- metadata +4 -4
- data/ui/dist/main-8421aae2289372e89a1d.js.gz +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2a53555a0c69ed075e09c63deb22a53381efb7d1935542d8ac760f6bbd168044
|
4
|
+
data.tar.gz: 99437be8cbf015ad29890152e45163fc0efbe5f3e747c6d74014640f548f1b28
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 532dfb71de17b84ca9f70c546290ca35261cf8d886a64cb8764bb1c72c512b3d5170ef9572075db026be9c28a64ddd5a4ce455d28c1d0595fbce0eb0e17a8389
|
7
|
+
data.tar.gz: 05c1f902bedf840dca52bf6b3a0229606e43ffcbe156b48431bd72988c81310d5731fe56b55130ddb8260a866d2e789702632502b758bcb9df77d57839d38725
|
@@ -83,9 +83,7 @@ module Motor
|
|
83
83
|
end
|
84
84
|
|
85
85
|
def load_cache_keys
|
86
|
-
result = ActiveRecord::Base.connection.
|
87
|
-
|
88
|
-
result = result.map(&:values) if result.first.is_a?(Hash)
|
86
|
+
result = ActiveRecord::Base.connection.exec_query(cache_keys_sql).rows
|
89
87
|
|
90
88
|
result.to_h.with_indifferent_access
|
91
89
|
end
|
@@ -61,7 +61,7 @@ module Motor
|
|
61
61
|
# @return [ActiveRecord::Result]
|
62
62
|
def execute_query(query, limit, variables_hash, filters)
|
63
63
|
result = nil
|
64
|
-
statement = prepare_sql_statement(query, limit, variables_hash, filters)
|
64
|
+
statement = prepare_sql_statement(connection_class.connection, query, limit, variables_hash, filters)
|
65
65
|
|
66
66
|
connection_class.transaction do
|
67
67
|
result =
|
@@ -129,17 +129,18 @@ module Motor
|
|
129
129
|
end
|
130
130
|
end
|
131
131
|
|
132
|
+
# @param connection [Object]
|
132
133
|
# @param query [Motor::Query]
|
133
134
|
# @param limit [Integer]
|
134
135
|
# @param variables_hash [Hash]
|
135
136
|
# @param filters [Hash]
|
136
137
|
# @return [Array]
|
137
|
-
def prepare_sql_statement(query, limit, variables_hash, filters)
|
138
|
+
def prepare_sql_statement(connection, query, limit, variables_hash, filters)
|
138
139
|
variables = merge_variable_default_values(query.preferences.fetch(:variables, []), variables_hash)
|
139
140
|
|
140
141
|
sql, query_variables = RenderSqlTemplate.call(query.sql_body, variables)
|
141
142
|
cte_sql = format(WITH_STATEMENT_TEMPLATE, sql_body: sql.strip.delete_suffix(';'))
|
142
|
-
cte_select_sql = build_cte_select_sql(limit, filters)
|
143
|
+
cte_select_sql = build_cte_select_sql(connection, limit, filters)
|
143
144
|
|
144
145
|
attributes = build_statement_attributes(query_variables)
|
145
146
|
|
@@ -149,7 +150,7 @@ module Motor
|
|
149
150
|
# @param limit [Number]
|
150
151
|
# @param filters [Hash]
|
151
152
|
# @return [String]
|
152
|
-
def build_cte_select_sql(limit, filters)
|
153
|
+
def build_cte_select_sql(connection, limit, filters)
|
153
154
|
table = Arel::Table.new(CTE_NAME)
|
154
155
|
|
155
156
|
arel_filters = build_filters_arel(filters)
|
@@ -157,7 +158,9 @@ module Motor
|
|
157
158
|
expresion = table.project(table[Arel.star])
|
158
159
|
expresion = expresion.where(arel_filters) if arel_filters.present?
|
159
160
|
|
160
|
-
expresion.take(limit.to_i).
|
161
|
+
expresion.take(limit.to_i) unless connection.class.name.include?('SQLServerAdapter')
|
162
|
+
|
163
|
+
expresion.to_sql.delete('"')
|
161
164
|
end
|
162
165
|
|
163
166
|
# @param filters [Hash]
|
data/lib/motor/version.rb
CHANGED
File without changes
|
Binary file
|
data/ui/dist/manifest.json
CHANGED
@@ -2601,9 +2601,9 @@
|
|
2601
2601
|
"icons/zoom-out.svg.gz": "icons/zoom-out.svg.gz",
|
2602
2602
|
"icons/zoom-question.svg": "icons/zoom-question.svg",
|
2603
2603
|
"icons/zoom-question.svg.gz": "icons/zoom-question.svg.gz",
|
2604
|
-
"main-
|
2605
|
-
"main-
|
2606
|
-
"main-
|
2607
|
-
"main.css": "main-
|
2608
|
-
"main.js": "main-
|
2604
|
+
"main-0bcdc9f1a27b26d23abd.css.gz": "main-0bcdc9f1a27b26d23abd.css.gz",
|
2605
|
+
"main-0bcdc9f1a27b26d23abd.js.LICENSE.txt": "main-0bcdc9f1a27b26d23abd.js.LICENSE.txt",
|
2606
|
+
"main-0bcdc9f1a27b26d23abd.js.gz": "main-0bcdc9f1a27b26d23abd.js.gz",
|
2607
|
+
"main.css": "main-0bcdc9f1a27b26d23abd.css",
|
2608
|
+
"main.js": "main-0bcdc9f1a27b26d23abd.js"
|
2609
2609
|
}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: motor-admin
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.25
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Pete Matsyburka
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-11-
|
11
|
+
date: 2021-11-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activerecord-filter
|
@@ -1525,8 +1525,8 @@ files:
|
|
1525
1525
|
- ui/dist/icons/zoom-money.svg.gz
|
1526
1526
|
- ui/dist/icons/zoom-out.svg.gz
|
1527
1527
|
- ui/dist/icons/zoom-question.svg.gz
|
1528
|
-
- ui/dist/main-
|
1529
|
-
- ui/dist/main-
|
1528
|
+
- ui/dist/main-0bcdc9f1a27b26d23abd.css.gz
|
1529
|
+
- ui/dist/main-0bcdc9f1a27b26d23abd.js.gz
|
1530
1530
|
- ui/dist/manifest.json
|
1531
1531
|
homepage:
|
1532
1532
|
licenses:
|
Binary file
|