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 5a3a2b7 commit c1103d3Copy full SHA for c1103d3
tests/integration_tests/test_client.py
@@ -234,7 +234,7 @@ def test_temporary_tables(test_client: Client):
234
test_client.insert_df('temp_test_table', df, settings=session_settings)
235
df = test_client.query_df('SELECT * FROM temp_test_table', settings=session_settings)
236
assert len(df['field1']) == 4
237
- test_client.command('DROP TABLE temp_test_table', settings=session_settings)
+ test_client.command('DROP TABLE IF EXISTS temp_test_table', settings=session_settings)
238
239
240
def test_str_as_bytes(test_client: Client, table_context: Callable):
0 commit comments