From 80b08d16fcd338d3d3d5c0335e6a47b7f6e5bcac Mon Sep 17 00:00:00 2001 From: Jordan Lewis Date: Sat, 24 Apr 2021 19:33:22 -0300 Subject: [PATCH] sql: fix flaky test Which row fails the validation in this test is nondeterministic due to DistSQL. Remove the specificity. Introduced by #64003 --- pkg/sql/logictest/testdata/logic_test/schema_change_in_txn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/sql/logictest/testdata/logic_test/schema_change_in_txn b/pkg/sql/logictest/testdata/logic_test/schema_change_in_txn index 0b2afa6dd8fa..8320f8570728 100644 --- a/pkg/sql/logictest/testdata/logic_test/schema_change_in_txn +++ b/pkg/sql/logictest/testdata/logic_test/schema_change_in_txn @@ -1012,7 +1012,7 @@ ALTER TABLE check_table ADD CHECK (a >= 0) statement ok ALTER TABLE check_table ADD CHECK (a < 0) -statement error pgcode XXA00 validation of CHECK \"a < 0:::INT8\" failed on row: k=0, a=0 +statement error pgcode XXA00 validation of CHECK \"a < 0:::INT8\" failed on row COMMIT query TTTTB