Skip to content
Snippets Groups Projects
Unverified Commit 1593064a authored by Pawit Pornkitprasan's avatar Pawit Pornkitprasan Committed by GitHub
Browse files

Disable all pivot tests on redshift (#18979)

parent ad0f099d
No related branches found
No related tags found
No related merge requests found
......@@ -387,7 +387,7 @@
(is (= [nil nil 3 7562] (last rows)))))))))
(deftest pivot-parameter-dataset-test
(mt/test-drivers (disj (pivots/applicable-drivers) :redshift) ; disable on Redshift until #18834 is fixed
(mt/test-drivers (pivots/applicable-drivers)
(mt/dataset sample-dataset
(testing "POST /api/dataset/pivot"
(testing "Run a pivot table"
......
......@@ -4,7 +4,9 @@
(defn applicable-drivers
"Drivers that these pivot table tests should run on"
[]
(mt/normal-drivers-with-feature :expressions :left-join))
(disj (mt/normal-drivers-with-feature :expressions :left-join)
;; Disable on Redshift due to OutOfMemory issue (see #18834)
:redshift))
(defn pivot-query
"A basic pivot table query"
......
......@@ -1055,7 +1055,7 @@
(str "public/pivot/dashboard/" (:public_uuid dash) "/card/" (u/the-id card)))
(deftest pivot-public-dashcard-test
(mt/test-drivers (disj (pivots/applicable-drivers) :redshift) ; disable on Redshift until #18834 is fixed
(mt/test-drivers (pivots/applicable-drivers)
(mt/dataset sample-dataset
(let [dashboard-defaults {:parameters [{:id "_STATE_"
:name "State"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment