Skip to content

Commit

Permalink
sql: fix cluster setting propagation flake take 2
Browse files Browse the repository at this point in the history
Previously we tried to fix this with one retry but that was
insufficient.  Extend it to all queries in this section of the test.

Release note: None
Epic: CRDB-20535
  • Loading branch information
cucaroach committed Jan 20, 2023
1 parent b38da1d commit 73408a2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions pkg/sql/logictest/testdata/logic_test/inverted_filter_geospatial
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,13 @@ SELECT k FROM geo_table WHERE 'POINT(3.0 3.0)'::geometry && geom ORDER BY k
3
6

query I
query I retry
SELECT k FROM geo_table WHERE 'POINT(3.0 3.0)'::geometry::box2d && geom ORDER BY k
----
3
6

query I
query I retry
SELECT k FROM geo_table WHERE ST_Covers('LINESTRING(1.0 1.0, 5.0 5.0)'::geometry, geom) ORDER BY k
----
1
Expand All @@ -71,7 +71,7 @@ SELECT k FROM geo_table WHERE ST_Covers('LINESTRING(1.0 1.0, 5.0 5.0)'::geometry

# Note that the result of the `~` bounding box operation includes an extra
# result not present in the previous result of ST_Covers.
query I
query I retry
SELECT k FROM geo_table WHERE 'LINESTRING(1.0 1.0, 5.0 5.0)'::geometry ~ geom ORDER BY k
----
1
Expand All @@ -80,7 +80,7 @@ SELECT k FROM geo_table WHERE 'LINESTRING(1.0 1.0, 5.0 5.0)'::geometry ~ geom OR
4
6

query I
query I retry
SELECT k FROM geo_table WHERE 'LINESTRING(1.0 1.0, 5.0 5.0)'::geometry::box2d ~ geom ORDER BY k
----
1
Expand All @@ -89,12 +89,12 @@ SELECT k FROM geo_table WHERE 'LINESTRING(1.0 1.0, 5.0 5.0)'::geometry::box2d ~
4
6

query I
query I retry
SELECT k FROM geo_table WHERE geom ~ 'LINESTRING(1.0 1.0, 5.0 5.0)'::geometry ORDER BY k
----
6

query I
query I retry
SELECT k FROM geo_table WHERE geom ~ 'LINESTRING(1.0 1.0, 5.0 5.0)'::geometry::box2d ORDER BY k
----
6
Expand Down

0 comments on commit 73408a2

Please sign in to comment.