Skip to content

Commit f6e985d

Browse files
authored
fix(ibis): Fix the incorrect data type in the test case (#1288)
1 parent 328bfcb commit f6e985d

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

ibis-server/tests/routers/v2/connector/test_redshift.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -157,14 +157,14 @@ async def test_query_with_aws_iam_credential(client, manifest_str):
157157
assert result["dtypes"] == {
158158
"orderkey": "int64",
159159
"custkey": "int64",
160-
"orderstatus": "object",
161-
"totalprice": "object",
162-
"orderdate": "object",
163-
"order_cust_key": "object",
164-
"timestamp": "object",
165-
"timestamptz": "object",
166-
"test_null_time": "object",
167-
"bytea_column": "object",
160+
"orderstatus": "string",
161+
"totalprice": "decimal128(5, 2)",
162+
"orderdate": "date32[day]",
163+
"order_cust_key": "string",
164+
"timestamp": "timestamp[ns]",
165+
"timestamptz": "timestamp[ns, tz=UTC]",
166+
"test_null_time": "null",
167+
"bytea_column": "string",
168168
}
169169

170170

0 commit comments

Comments
 (0)