bkyryliuk commented on a change in pull request #10498:
URL: 
https://github.com/apache/incubator-superset/pull/10498#discussion_r466585259



##########
File path: tests/sqla_models_tests.py
##########
@@ -93,7 +93,11 @@ def test_extra_cache_keys(self, flask_g):
         query_obj = dict(**base_query_obj, extras={})
         extra_cache_keys = table.get_extra_cache_keys(query_obj)
         self.assertTrue(table.has_extra_cache_key_calls(query_obj))
-        self.assertListEqual(extra_cache_keys, ["abc"])
+        # TODO: make it work with presto
+        if get_example_database().backend == "presto":
+            assert extra_cache_keys == []
+        else:
+            assert extra_cache_keys == ["abc"]

Review comment:
       agree, did not investigate - worth looking into




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to