From d187be74a52e85966bd6a22b93500f266a5a88d5 Mon Sep 17 00:00:00 2001 From: Jussi Saurio Date: Fri, 17 Oct 2025 09:25:06 +0300 Subject: [PATCH] antithesis-tests: don't create CHECK constraints we don't support them, and we just started returning parse errors for trying to do so -> failures in antithesis runs --- .../stress-composer/parallel_driver_create_table.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/antithesis-tests/stress-composer/parallel_driver_create_table.py b/antithesis-tests/stress-composer/parallel_driver_create_table.py index 5d786d2da..7f3d2ba3a 100755 --- a/antithesis-tests/stress-composer/parallel_driver_create_table.py +++ b/antithesis-tests/stress-composer/parallel_driver_create_table.py @@ -49,7 +49,7 @@ print(f"Creating new table: tbl_{next_table_num}") # Define possible data types and constraints data_types = ["INTEGER", "REAL", "TEXT", "BLOB", "NUMERIC"] -constraints = ["", "NOT NULL", "DEFAULT 0", "DEFAULT ''", "UNIQUE", "CHECK (col_0 > 0)"] +constraints = ["", "NOT NULL", "DEFAULT 0", "DEFAULT ''", "UNIQUE"] # Generate random number of columns (2-10) col_count = 2 + (get_random() % 9)