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

fix: correct whitespace in delta protocol reader minimum version error message #1576

Merged
merged 1 commit into from
Aug 1, 2023
Merged
Changes from all commits
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
Add a space in the exception message
  • Loading branch information
polynomialherder committed Aug 1, 2023
commit 9d4ac163f1e9553264bc624917cf74a709fc2379
2 changes: 1 addition & 1 deletion python/deltalake/table.py
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ def to_pyarrow_dataset(
"""
if self.protocol().min_reader_version > MAX_SUPPORTED_READER_VERSION:
raise DeltaProtocolError(
f"The table's minimum reader version is {self.protocol().min_reader_version}"
f"The table's minimum reader version is {self.protocol().min_reader_version} "
f"but deltalake only supports up to version {MAX_SUPPORTED_READER_VERSION}."
)

Expand Down