We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Please answer these questions before submitting your issue. Thanks!
use test drop table if exists t1; drop table if exists t2; create table t1(a int); create table t2(a int); insert into t1 values(null), (null), (null), (null); insert into t2 values(null), (null); analyze table t1; analyze table t2; explain select * from t2 left join t1 on t1.a=t2.a order by t1.a, t2.a;
Build side of the Join is t1.
Build side of the Join is t2.
master, release-6.0
The text was updated successfully, but these errors were encountered:
statistics: allow using not-loaded stats when ndv is 0 (#33241)
768ce5f
ref #32758, close #33280
statistics: allow using not-loaded stats when ndv is 0 (#33241) (#33312)
f993354
time-and-fate
Successfully merging a pull request may close this issue.
Bug Report
Please answer these questions before submitting your issue. Thanks!
1. Minimal reproduce step (Required)
2. What did you expect to see? (Required)
Build side of the Join is t1.
3. What did you see instead (Required)
Build side of the Join is t2.
4. What is your TiDB version? (Required)
master, release-6.0
The text was updated successfully, but these errors were encountered: