Skip to content

Commit

Permalink
sql: deflake TestTelemetry
Browse files Browse the repository at this point in the history
This commit deflakes TestTelemetry by adding a more precise
feature-allowlist.

Fixes cockroachdb#75190

Release note: None
  • Loading branch information
rytaft authored and Gerardo Torres committed Jan 24, 2022
1 parent eaa8938 commit 813d9a6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pkg/sql/testdata/telemetry/planning
Original file line number Diff line number Diff line change
Expand Up @@ -180,14 +180,18 @@ SELECT * FROM (VALUES (1), (2)) AS a(x) JOIN LATERAL (SELECT a.x+1 AS x) AS b ON
sql.plan.lateral-join

feature-allowlist
sql.plan.subquery.*
sql.plan.subquery
----

feature-usage
SELECT 1 = (SELECT a FROM x LIMIT 1)
----
sql.plan.subquery

feature-allowlist
sql.plan.subquery.correlated
----

feature-usage
SELECT x FROM (VALUES (1)) AS b(x) WHERE EXISTS(SELECT * FROM (VALUES (1)) AS a(x) WHERE a.x = b.x)
----
Expand Down

0 comments on commit 813d9a6

Please sign in to comment.