diff --git a/tests/integration/dbapi/async/V1/test_queries_async.py b/tests/integration/dbapi/async/V1/test_queries_async.py index d459f08d63..3a1d891be2 100644 --- a/tests/integration/dbapi/async/V1/test_queries_async.py +++ b/tests/integration/dbapi/async/V1/test_queries_async.py @@ -220,7 +220,7 @@ async def test_query(c: Cursor, query: str) -> None: await test_query( c, "CREATE AGGREGATING INDEX test_db_agg_idx ON " - "test_drop_create_async(id, sum(f), count(dt))", + "test_drop_create_async(id, count(f), count(dt))", ) # Drop aggregating index diff --git a/tests/integration/dbapi/async/V2/test_queries_async.py b/tests/integration/dbapi/async/V2/test_queries_async.py index 8e6bcc7d2c..04732600a4 100644 --- a/tests/integration/dbapi/async/V2/test_queries_async.py +++ b/tests/integration/dbapi/async/V2/test_queries_async.py @@ -149,7 +149,7 @@ async def test_query(c: Cursor, query: str) -> None: await test_query( c, "CREATE AGGREGATING INDEX test_db_agg_idx ON " - "test_drop_create_async(id, sum(f), count(dt))", + "test_drop_create_async(id, count(f), count(dt))", ) # Drop aggregating index diff --git a/tests/integration/dbapi/sync/V1/test_queries.py b/tests/integration/dbapi/sync/V1/test_queries.py index 3daf23ae3c..884964c483 100644 --- a/tests/integration/dbapi/sync/V1/test_queries.py +++ b/tests/integration/dbapi/sync/V1/test_queries.py @@ -167,7 +167,7 @@ def test_query(c: Cursor, query: str) -> None: test_query( c, "CREATE AGGREGATING INDEX test_drop_create_db_agg_idx ON " - "test_drop_create_tb(id, sum(f), count(dt))", + "test_drop_create_tb(id, count(f), count(dt))", ) # Drop aggregating index diff --git a/tests/integration/dbapi/sync/V2/test_queries.py b/tests/integration/dbapi/sync/V2/test_queries.py index 6e4362c982..762da163d3 100644 --- a/tests/integration/dbapi/sync/V2/test_queries.py +++ b/tests/integration/dbapi/sync/V2/test_queries.py @@ -153,7 +153,7 @@ def test_query(c: Cursor, query: str) -> None: test_query( c, "CREATE AGGREGATING INDEX test_drop_create_db_agg_idx ON " - "test_drop_create_tb(id, sum(f), count(dt))", + "test_drop_create_tb(id, count(f), count(dt))", ) # Drop aggregating index