Skip to content

Commit 1e3970c

Browse files
test: update aggregating index create (#372)
1 parent 0ef3224 commit 1e3970c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

tests/integration/dbapi/async/V1/test_queries_async.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ async def test_query(c: Cursor, query: str) -> None:
220220
await test_query(
221221
c,
222222
"CREATE AGGREGATING INDEX test_db_agg_idx ON "
223-
"test_drop_create_async(id, sum(f), count(dt))",
223+
"test_drop_create_async(id, count(f), count(dt))",
224224
)
225225

226226
# Drop aggregating index

tests/integration/dbapi/async/V2/test_queries_async.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ async def test_query(c: Cursor, query: str) -> None:
149149
await test_query(
150150
c,
151151
"CREATE AGGREGATING INDEX test_db_agg_idx ON "
152-
"test_drop_create_async(id, sum(f), count(dt))",
152+
"test_drop_create_async(id, count(f), count(dt))",
153153
)
154154

155155
# Drop aggregating index

tests/integration/dbapi/sync/V1/test_queries.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ def test_query(c: Cursor, query: str) -> None:
167167
test_query(
168168
c,
169169
"CREATE AGGREGATING INDEX test_drop_create_db_agg_idx ON "
170-
"test_drop_create_tb(id, sum(f), count(dt))",
170+
"test_drop_create_tb(id, count(f), count(dt))",
171171
)
172172

173173
# Drop aggregating index

tests/integration/dbapi/sync/V2/test_queries.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ def test_query(c: Cursor, query: str) -> None:
153153
test_query(
154154
c,
155155
"CREATE AGGREGATING INDEX test_drop_create_db_agg_idx ON "
156-
"test_drop_create_tb(id, sum(f), count(dt))",
156+
"test_drop_create_tb(id, count(f), count(dt))",
157157
)
158158

159159
# Drop aggregating index

0 commit comments

Comments
 (0)