Skip to content

Commit

Permalink
Fix function names in DuckDB TPC-H tests (#1539)
Browse files Browse the repository at this point in the history
  • Loading branch information
hendrikmakait authored Sep 5, 2024
1 parent e92c232 commit a11f90d
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions tests/tpch/test_duckdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,63 +48,63 @@ def _():

def test_query_01(run, connection, dataset_path, scale):
def _():
duckdb_queries.query_1(connection(), dataset_path, scale)
duckdb_queries.query_01(connection(), dataset_path, scale)

run(_)


def test_query_02(run, connection, dataset_path, scale):
def _():
duckdb_queries.query_2(connection(), dataset_path, scale)
duckdb_queries.query_02(connection(), dataset_path, scale)

run(_)


def test_query_03(run, connection, dataset_path, scale):
def _():
duckdb_queries.query_3(connection(), dataset_path, scale)
duckdb_queries.query_03(connection(), dataset_path, scale)

run(_)


def test_query_04(run, connection, dataset_path, scale):
def _():
duckdb_queries.query_4(connection(), dataset_path, scale)
duckdb_queries.query_04(connection(), dataset_path, scale)

run(_)


def test_query_05(run, connection, dataset_path, scale):
def _():
duckdb_queries.query_5(connection(), dataset_path, scale)
duckdb_queries.query_05(connection(), dataset_path, scale)

run(_)


def test_query_06(run, connection, dataset_path, scale):
def _():
duckdb_queries.query_6(connection(), dataset_path, scale)
duckdb_queries.query_06(connection(), dataset_path, scale)

run(_)


def test_query_07(run, connection, dataset_path, scale):
def _():
duckdb_queries.query_7(connection(), dataset_path, scale)
duckdb_queries.query_07(connection(), dataset_path, scale)

run(_)


def test_query_08(run, connection, dataset_path, scale):
def _():
duckdb_queries.query_8(connection(), dataset_path, scale)
duckdb_queries.query_08(connection(), dataset_path, scale)

run(_)


def test_query_09(run, connection, dataset_path, scale):
def _():
duckdb_queries.query_9(connection(), dataset_path, scale)
duckdb_queries.query_09(connection(), dataset_path, scale)

run(_)

Expand Down

0 comments on commit a11f90d

Please sign in to comment.