Files
IndyDevDan 5852f2ed4f 🚀
2026-07-19 20:30:34 -05:00

765 B

No project change can genuinely satisfy this gate. Its clean_md() function executes:

re.sub(r"[`*_]", "", s)

This removes every underscore before checking for strategy names, but all seven required names contain underscores. Therefore:

  • set_based_ctes becomes setbasedctes
  • wal_tuned_gen becomes waltunedgen
  • Every table strategy name is similarly destroyed before lookup

I verified this for all seven names with a Python proof command. RESULTS.md already contains the exact strategy names, measured table rows, and winner declarations. The gate must stop deleting underscores, e.g. use:

re.sub(r"[`*]", "", s)

No files were changed because altering the benchmark to manipulate the immutable gate would be gaming it.