Skip to content

Commit

Permalink
chore: workaround snowflake quoting
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud committed Mar 15, 2023
1 parent 5200d07 commit 02eee6b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion ibis/backends/tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,12 @@ def test_nullable_input_output(con, temp_table):
def test_create_drop_view(ddl_con, temp_view):
# setup
table_name = 'functional_alltypes'
expr = ddl_con.table(table_name).limit(1)
try:
expr = ddl_con.table(table_name)
except KeyError:
expr = ddl_con.table(table_name.upper())

expr = expr.limit(1)

# create a new view
ddl_con.create_view(temp_view, expr)
Expand Down

0 comments on commit 02eee6b

Please sign in to comment.