Skip to content

Commit

Permalink
fix typo in subquery optimization (#12119) (#12248)
Browse files Browse the repository at this point in the history
  • Loading branch information
ti-chi-bot authored Jan 30, 2023
1 parent 8a07cdf commit f453698
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion subquery-optimization.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ At present, for a subquery in such scenarios, if the subquery is not a correlate
create table t1(a int);
create table t2(a int);
insert into t2 values(1);
explain select * from t where exists (select * from t2);
explain select * from t1 where exists (select * from t2);
```

```sql
Expand Down

0 comments on commit f453698

Please sign in to comment.