Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mehtamohit013 committed Jul 5, 2023
1 parent 1067d64 commit 77f35ca
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/tests/integration/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,8 @@ def add_tables_duckdb(ip, names):
ip.run_cell(
f"""
%%sql
DROP TABLE IF EXISTS {names["taxi"]};
CREATE TABLE {names["taxi"]} (
taxi_driver_name VARCHAR(50)
);
Expand All @@ -257,6 +259,8 @@ def add_tables_duckdb(ip, names):
ip.run_cell(
f"""
%%sql
DROP TABLE IF EXISTS {names["plot_something"]};
CREATE TABLE {names["plot_something"]} (
x INTEGER,
y INTEGER
Expand All @@ -269,6 +273,8 @@ def add_tables_duckdb(ip, names):
ip.run_cell(
f"""
%%sql
DROP TABLE IF EXISTS {names["numbers"]};
CREATE TABLE {names["numbers"]} (
numbers_elements INTEGER
);
Expand Down

0 comments on commit 77f35ca

Please sign in to comment.