Skip to content

Commit 4c689d2

Browse files
authored
feat(core): bump DataFusion to 42.0.0 (#796)
* upgrade to 42.0.0 * disable the fail tests * enable the test case * cargo fmt * fix the python tests * fix ibis test
1 parent eb11495 commit 4c689d2

File tree

11 files changed

+815
-811
lines changed

11 files changed

+815
-811
lines changed

ibis-server/poetry.lock

+636-666
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ibis-server/tests/routers/v3/connector/test_postgres.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -105,14 +105,14 @@ def test_query(postgres: PostgresContainer):
105105
assert len(result["columns"]) == len(manifest["models"][0]["columns"])
106106
assert len(result["data"]) == 1
107107
assert result["data"][0] == [
108-
1,
108+
"2024-01-01 23:59:59.000000",
109+
"2024-01-01 23:59:59.000000 UTC",
110+
"1_370",
109111
370,
112+
1,
113+
"1996-01-02",
110114
"O",
111115
"172799.49",
112-
"1996-01-02",
113-
"1_370",
114-
"2024-01-01 23:59:59.000000",
115-
"2024-01-01 23:59:59.000000 UTC",
116116
]
117117
assert result["dtypes"] == {
118118
"orderkey": "int32",
@@ -140,7 +140,7 @@ def test_query_with_connection_url(postgres: PostgresContainer):
140140
result = response.json()
141141
assert len(result["columns"]) == len(manifest["models"][0]["columns"])
142142
assert len(result["data"]) == 1
143-
assert result["data"][0][0] == 1
143+
assert result["data"][0][0] == "2024-01-01 23:59:59.000000"
144144
assert result["dtypes"] is not None
145145

146146

0 commit comments

Comments
 (0)