Skip to content

Commit

Permalink
Linting after manual merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
mjonss committed Mar 11, 2024
1 parent 8c573c9 commit f3c6807
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkg/planner/core/plan_cache_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1012,9 +1012,9 @@ func TestNonPreparedPlanExplainWarning(t *testing.T) {
"select * from t1 order by a", // order by
"select * from t3 where full_name = 'a b'", // generated column
"select * from t3 where a > 1 and full_name = 'a b'",
"select * from t1 where a in (1, 2)", // Partitioned
"select * from t2 where a in (1, 2) and b in (1, 2, 3)", // Partitioned
"select * from t1 where a in (1, 2) and b < 15", // Partitioned
"select * from t1 where a in (1, 2)", // Partitioned
"select * from t2 where a in (1, 2) and b in (1, 2, 3)", // Partitioned
"select * from t1 where a in (1, 2) and b < 15", // Partitioned
}

unsupported := []string{
Expand Down

0 comments on commit f3c6807

Please sign in to comment.