Skip to content

Commit 08c25eb

Browse files
rustyconoverclaude
andcommitted
fix(fixtures): restore truncated cache_ordered table comment
14f17ff ("style(cache): satisfy ruff format + check") shortened the comment string's *content* to get the line under ruff's 120-char limit, rather than wrapping it. That silently dropped the "Multi-worker " prefix, diverging from both expectation files that still assert the full text: tests/landing/describe.expected.json here, and test/sql/integration/table/comments.test in the vgi extension repo. Restore the original text inside parens so the line wraps instead. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 14f17ff commit 08c25eb

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

vgi/_test_fixtures/worker.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -766,7 +766,9 @@ def _build_enum_stats() -> dict[str, ColumnStatisticsInput]:
766766
Table(
767767
name="cache_ordered",
768768
function=CacheOrderedFunction,
769-
comment="Order-sensitive cacheable result (batch_index; parallel capture, ordered serve)",
769+
comment=(
770+
"Multi-worker order-sensitive cacheable result (batch_index; parallel capture, ordered serve)"
771+
),
770772
),
771773
Table(
772774
name="cache_revalidatable",

0 commit comments

Comments
 (0)