From 54472b4d2d8029b9d31ce09fcb4a62bb4cb86cc5 Mon Sep 17 00:00:00 2001 From: Phillip Cloud <417981+cpcloud@users.noreply.github.com> Date: Wed, 18 Sep 2024 17:02:45 -0400 Subject: [PATCH] test(bigquery): avoid trying to clobber existing tables by generating a name during create memtable tests (#10165) --- ibis/backends/tests/test_client.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ibis/backends/tests/test_client.py b/ibis/backends/tests/test_client.py index 57943042daf6..f76474667684 100644 --- a/ibis/backends/tests/test_client.py +++ b/ibis/backends/tests/test_client.py @@ -999,6 +999,7 @@ def test_self_join_memory_table(backend, con, monkeypatch): ) def test_create_table_in_memory(con, obj, table_name, monkeypatch): monkeypatch.setattr(ibis.options, "default_backend", con) + table_name = gen_name(table_name) t = con.create_table(table_name, obj()) try: