Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions pkg/sql/logictest/testdata/logic_test/inverted_index
Original file line number Diff line number Diff line change
Expand Up @@ -2137,6 +2137,11 @@ INSERT INTO t151995 (c0, c1) VALUES (
statement ok
ANALYZE t151995;

# Clear the stat cache so that the new statistic is guaranteed to be used (which
# are needed for the inverted join to be picked).
statement ok
SELECT crdb_internal.clear_table_stats_cache();

statement error geos error: IllegalArgumentException: BufferOp::getResultGeometry distance must be a finite value
SELECT *
FROM t151995 AS t1
Expand Down
Loading