Commit df14e16
committed
fix(schema): remove '; ' from comment that broke ddl.split(';') statement extractor
pg_schema.py:1320 splits DDL strings naively on ';'. The comment block
above workflow_graph_layout had a semicolon inside the comment text:
-- ... topology_fingerprint tracks which graph build the
-- coordinates were computed against; the tile + quadtree endpoints
The split produced a stray 'the tile + quadtree endpoints' statement
that PG failed with: syntax error at or near 'the'. Caught when E1
ablation logged 'Schema statement failed' on every benchmark restart.
Reworded the comment to use a sentence boundary instead of a
semicolon. Schema now parses cleanly; verified by enumerating
get_all_ddl() and grepping all DDL-block comments for residual ';'.1 parent fa9c101 commit df14e16
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
492 | 492 | | |
493 | 493 | | |
494 | 494 | | |
495 | | - | |
| 495 | + | |
496 | 496 | | |
497 | 497 | | |
498 | 498 | | |
| |||
0 commit comments