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: accept empty arrays in struct field lookup #997

Merged
merged 3 commits into from
Aug 6, 2024

Commits on Aug 5, 2024

  1. Fix: accept empty arrays in struct field lookup

    Fixes apache#992.
    
    Empty `pyarrow` arrays are considered falsy, which caused a `ResolveError` for required fields during scan operations.
    grobgl authored Aug 5, 2024
    Configuration menu
    Copy the full SHA
    9f28f5a View commit details
    Browse the repository at this point in the history

Commits on Aug 6, 2024

  1. Integration test: empty scan on non-nullable ordered string column

    This covers the issue reported in apache#992 where empty scan queries yielded a `ResolveError`. Specifically, this occurred under the following conditions:
    - a table with an ordered, non-nullable string column
    - a scan filtering for a non-existing value _within_ the range of the values in that particular column
    grobgl authored Aug 6, 2024
    Configuration menu
    Copy the full SHA
    f34c4af View commit details
    Browse the repository at this point in the history
  2. Lint (add missing newline)

    grobgl authored Aug 6, 2024
    Configuration menu
    Copy the full SHA
    5081114 View commit details
    Browse the repository at this point in the history