fix: Correctly iterate over null struct values in ManagedArrowTable by chelsea-lin · Pull Request #2209 · googleapis/python-bigquery-dataframes · GitHub
Skip to content
This repository was archived by the owner on May 7, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
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
37 changes: 19 additions & 18 deletions bigframes/core/local_data.py
5 changes: 3 additions & 2 deletions tests/system/small/engines/test_read_local.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,9 @@ def test_engines_read_local_w_zero_row_source(
assert_equivalence_execution(local_node, REFERENCE_ENGINE, engine)


# TODO: Fix sqlglot impl
@pytest.mark.parametrize("engine", ["polars", "bq", "pyarrow"], indirect=True)
@pytest.mark.parametrize(
"engine", ["polars", "bq", "pyarrow", "bq-sqlglot"], indirect=True
)
def test_engines_read_local_w_nested_source(
fake_session: bigframes.Session,
nested_data_source: local_data.ManagedArrowTable,
Expand Down

This file was deleted.

39 changes: 31 additions & 8 deletions tests/unit/test_local_data.py