Skip to content

Commit c0ed5ed

Browse files
committed
increasing limit to 60K
1 parent 0fa7ce4 commit c0ed5ed

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/metabase/query_processor/middleware/constraints.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44

55
(def ^:private max-results-bare-rows
66
"Maximum number of rows to return specifically on :rows type queries via the API."
7-
10000)
7+
60000)
88

99
(def ^:private max-results
1010
"General maximum number of rows to return from an API query."
11-
10000)
11+
60000)
1212

1313
(def default-query-constraints
1414
"Default map of constraints that we apply on dataset queries executed by the api."

0 commit comments

Comments
 (0)