Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump DataFusion version #453

Merged
merged 11 commits into from
Oct 28, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Nullability
  • Loading branch information
Dandandan committed Oct 27, 2022
commit bc74035fabd7b0c3d2d1459feaac42e1e1656401
6 changes: 3 additions & 3 deletions python/ballista/tests/test_catalog.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ def test_basic(ctx, database):
assert table.kind == "physical"
assert table.schema == pa.schema(
[
pa.field("int", pa.int64(), nullable=False),
pa.field("str", pa.string(), nullable=False),
pa.field("float", pa.float64(), nullable=False),
pa.field("int", pa.int64(), nullable=True),
pa.field("str", pa.string(), nullable=True),
pa.field("float", pa.float64(), nullable=True),
]
)