From 6e31616782c259c9f8b62c9fe6836f50c6e97cf1 Mon Sep 17 00:00:00 2001 From: Andrew Werner Date: Tue, 7 Jun 2022 08:21:53 -0400 Subject: [PATCH] sql/logictest: fix trigram_indexes flake See failures like [this](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_UnitTests/5393754?showRootCauses=false&expandBuildChangesSection=true&expandBuildProblemsSection=true&expandBuildTestsSection=true). Release note: None --- pkg/sql/logictest/testdata/logic_test/trigram_indexes | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/sql/logictest/testdata/logic_test/trigram_indexes b/pkg/sql/logictest/testdata/logic_test/trigram_indexes index 976185d1b595..3d700b541973 100644 --- a/pkg/sql/logictest/testdata/logic_test/trigram_indexes +++ b/pkg/sql/logictest/testdata/logic_test/trigram_indexes @@ -25,7 +25,7 @@ INSERT INTO a VALUES (1, 'foozoopa'), (2, 'Foo'), (3, 'blah') -query IT +query IT rowsort SELECT * FROM a@a_t_idx WHERE t ILIKE '%Foo%' ---- 1 foozoopa