We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0ed5ed commit adc83cfCopy full SHA for adc83cf
src/metabase/query_processor/middleware/process_userland_query.clj
@@ -160,7 +160,7 @@
160
(let [context (get-in query [:info :context])
161
query (update-in query[:native] assoc :original_query (get-in query[:native :query]))
162
raw_query (clojure.string/replace (get-in query[:native :query]) #"[ ;]*$" "" )
163
- limit (if(adhoc-or-question? context) (atom 10000) (atom 100000))]
+ limit (if(adhoc-or-question? context) (atom 60000) (atom 100000))]
164
(if-not (re-find #"(?i)limit " raw_query)
165
(update-in query[:native] assoc :query (str raw_query " limit " @limit ))
166
query
0 commit comments