antithesis: Drop experimental_indexes parameter from commect()

The `experimental_indexes` parameter got dropped from Python bindings so
stop using it to make Antithesis stress-composer drivers to run.
This commit is contained in:
Pekka Enberg
2025-09-05 13:17:39 +03:00
parent f0fa0aa161
commit 3341f4657e
12 changed files with 12 additions and 12 deletions

View File

@@ -32,7 +32,7 @@ pk = tbl_schema["pk"]
cols = [f"col_{col}" for col in range(tbl_schema["colCount"]) if col != pk]
# print(cols)
try:
con = turso.connect("stress_composer.db", experimental_indexes=True)
con = turso.connect("stress_composer.db")
except Exception as e:
print(f"Failed to open stress_composer.db. Exiting... {e}")
exit(0)