Skip to content

Commit 7d7342a

Browse files
committed
fix v3 test
1 parent c3f4122 commit 7d7342a

File tree

7 files changed

+13
-0
lines changed

7 files changed

+13
-0
lines changed

ibis-server/tests/routers/v3/connector/canner/test_functions.py

+2
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ async def test_scalar_function(client, manifest_str: str, connection_info):
8686
"columns": ["col"],
8787
"data": [[1]],
8888
"dtypes": {"col": "int32"},
89+
"index": [0],
8990
}
9091

9192

@@ -104,4 +105,5 @@ async def test_aggregate_function(client, manifest_str: str, connection_info):
104105
"columns": ["col"],
105106
"data": [[1]],
106107
"dtypes": {"col": "int64"},
108+
"index": [0],
107109
}

ibis-server/tests/routers/v3/connector/clickhouse/test_functions.py

+1
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ async def test_scalar_function(client, manifest_str: str, connection_info):
8888
"columns": ["col"],
8989
"data": [[1]],
9090
"dtypes": {"col": "uint8"},
91+
"index": [0],
9192
}
9293

9394

ibis-server/tests/routers/v3/connector/mssql/test_functions.py

+2
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ async def test_scalar_function(client, manifest_str: str, connection_info):
8888
"columns": ["col"],
8989
"data": [[1]],
9090
"dtypes": {"col": "int32"},
91+
"index": [0],
9192
}
9293

9394

@@ -106,6 +107,7 @@ async def test_aggregate_function(client, manifest_str: str, connection_info):
106107
"columns": ["col"],
107108
"data": [[1]],
108109
"dtypes": {"col": "int64"},
110+
"index": [0],
109111
}
110112

111113

ibis-server/tests/routers/v3/connector/mysql/test_functions.py

+2
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ async def test_scalar_function(client, manifest_str: str, connection_info):
8989
"columns": ["col"],
9090
"data": [[1]],
9191
"dtypes": {"col": "int32"},
92+
"index": [0],
9293
}
9394

9495

@@ -107,6 +108,7 @@ async def test_aggregate_function(client, manifest_str: str, connection_info):
107108
"columns": ["col"],
108109
"data": [[1]],
109110
"dtypes": {"col": "int64"},
111+
"index": [0],
110112
}
111113

112114

ibis-server/tests/routers/v3/connector/postgres/test_functions.py

+2
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ async def test_scalar_function(client, manifest_str: str, connection_info):
9090
"columns": ["col"],
9191
"data": [[1]],
9292
"dtypes": {"col": "int32"},
93+
"index": [0],
9394
}
9495

9596

@@ -108,6 +109,7 @@ async def test_aggregate_function(client, manifest_str: str, connection_info):
108109
"columns": ["col"],
109110
"data": [[1]],
110111
"dtypes": {"col": "int64"},
112+
"index": [0],
111113
}
112114

113115

ibis-server/tests/routers/v3/connector/snowflake/test_functions.py

+2
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ async def test_scalar_function(client, manifest_str: str, connection_info):
8686
"columns": ["COL"],
8787
"data": [[1]],
8888
"dtypes": {"COL": "int64"},
89+
"index": [0],
8990
}
9091

9192

@@ -104,4 +105,5 @@ async def test_aggregate_function(client, manifest_str: str, connection_info):
104105
"columns": ["COL"],
105106
"data": [[1]],
106107
"dtypes": {"COL": "int64"},
108+
"index": [0],
107109
}

ibis-server/tests/routers/v3/connector/trino/test_functions.py

+2
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ async def test_scalar_function(client, manifest_str: str, connection_info):
8888
"columns": ["col"],
8989
"data": [[1]],
9090
"dtypes": {"col": "int32"},
91+
"index": [0],
9192
}
9293

9394

@@ -106,6 +107,7 @@ async def test_aggregate_function(client, manifest_str: str, connection_info):
106107
"columns": ["col"],
107108
"data": [[1]],
108109
"dtypes": {"col": "int64"},
110+
"index": [0],
109111
}
110112

111113

0 commit comments

Comments
 (0)