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.
2 parents 8da0e8b + 28dbf0b commit c5a5708Copy full SHA for c5a5708
tests/integration_tests/test_client.py
@@ -215,7 +215,10 @@ def test_empty_result(test_client: Client):
215
assert len(test_client.query("SELECT * FROM system.tables WHERE name = '_NOT_A THING'").result_rows) == 0
216
217
218
-def test_temporary_tables(test_client: Client):
+def test_temporary_tables(test_client: Client, test_config: TestConfig):
219
+ if test_config.cloud:
220
+ pytest.skip("Skipping temporary tables test in cloud env")
221
+
222
session_id = test_client.get_client_setting("session_id")
223
session_settings = {"session_id": session_id}
224
test_client.command("""
0 commit comments