You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Extracting a large table (~8M rows, multi-segment VertiPaq column store) from a .pbix, one string column comes out misaligned relative to the other columns in the same row — i.e. row N's value for that column actually belongs to a different row, while every other column in row N decodes correctly. Confirmed against an independent ground-truth source (see below), not a data-quality issue in the source file.
I checked #52 (off-by-one bit-pack base for nullable dictionary segments, merged 2026-07-21) first since it looked like the same class of bug — it's very possibly related, but what I'm seeing doesn't fully match a simple off-by-one/global-offset pattern (details below), so filing separately in case it's a distinct residual issue.
Context
Source: a public-sector .pbix report (~8M row table, 30 columns, one table with a string column that's dictionary-encoded and nullable — same shape #52 describes: "nullable dictionary-encoded column split across multiple VertiPaq segments, roughly >1M rows"). I don't have a synthetic minimal repro yet (the file is a government dataset with rows I can't republish, and I haven't isolated a small .pbix that reproduces it), but I do have a solid statistical characterization from cross-checking against an external, independent ground truth.
What I measured
The string column in question (a name/description field) can be cross-checked against an external registry via a separate ID column in the same row that decodes correctly. Out of 64 rows where that ID had a unique match in the external registry (so the "correct" value is unambiguous):
All non-string columns (numeric, categorical, the ID itself) decoded correctly for all 64 rows.
~30% showed no consistent offset at all — displacements ranging from 2 rows to over 40,000 rows away, no discernible pattern.
The 30% "no pattern" tail is what makes this look like it might be more than the #52 off-by-one — a fixed-offset bug would be 100% one offset (or a small number of them tied to segment boundaries), not a long tail with no structure.
All other columns in the same table (region/category codes, numeric measures) validated correctly against independent sources — the misalignment appears isolated to this one long string/dictionary column.
What I can't confirm yet
Exact pbixray version at extraction time (installed via plain pip install pbixray, not pinned — will confirm and follow up if useful).
Summary
Extracting a large table (~8M rows, multi-segment VertiPaq column store) from a
.pbix, one string column comes out misaligned relative to the other columns in the same row — i.e. row N's value for that column actually belongs to a different row, while every other column in row N decodes correctly. Confirmed against an independent ground-truth source (see below), not a data-quality issue in the source file.I checked #52 (off-by-one bit-pack base for nullable dictionary segments, merged 2026-07-21) first since it looked like the same class of bug — it's very possibly related, but what I'm seeing doesn't fully match a simple off-by-one/global-offset pattern (details below), so filing separately in case it's a distinct residual issue.
Context
Source: a public-sector
.pbixreport (~8M row table, 30 columns, one table with a string column that's dictionary-encoded and nullable — same shape #52 describes: "nullable dictionary-encoded column split across multiple VertiPaq segments, roughly >1M rows"). I don't have a synthetic minimal repro yet (the file is a government dataset with rows I can't republish, and I haven't isolated a small.pbixthat reproduces it), but I do have a solid statistical characterization from cross-checking against an external, independent ground truth.What I measured
The string column in question (a name/description field) can be cross-checked against an external registry via a separate ID column in the same row that decodes correctly. Out of 64 rows where that ID had a unique match in the external registry (so the "correct" value is unambiguous):
The 30% "no pattern" tail is what makes this look like it might be more than the #52 off-by-one — a fixed-offset bug would be 100% one offset (or a small number of them tied to segment boundaries), not a long tail with no structure.
All other columns in the same table (region/category codes, numeric measures) validated correctly against independent sources — the misalignment appears isolated to this one long string/dictionary column.
What I can't confirm yet
pip install pbixray, not pinned — will confirm and follow up if useful).Happy to help reproduce
I can't share the raw government data, but I can share: