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
The query reports "Can't find a proper physical plan for this query", but it should be executed successfully.
mysql> create table tbl(n1 varbinary(1024), n2 varbinary(1024), n3 bigint(20), n4 mediumblob, primary key(n1, n2, n3)); Query OK, 0 rows affected (0.00 sec) mysql> prepare stmt from 'select * from tbl where n1=? and n2>=? and n2<=?'; Query OK, 0 rows affected (0.00 sec) mysql> set @a='0000', @b='9999'; Query OK, 0 rows affected (0.00 sec) mysql> execute stmt using @a, @b, @a; ERROR 1815 (HY000): Internal : Can't find a proper physical plan for this query
Returns empty result.
ERROR 1815 (HY000): Internal : Can't find a proper physical plan for this query
master.
The text was updated successfully, but these errors were encountered:
Note: Make Sure that 'component', and 'severity' labels are added Example for how to fill out the template: #20100
Sorry, something went wrong.
eurekaka
Successfully merging a pull request may close this issue.
Bug Report
The query reports "Can't find a proper physical plan for this query", but it should be executed successfully.
1. Minimal reproduce step (Required)
2. What did you expect to see? (Required)
Returns empty result.
3. What did you see instead (Required)
ERROR 1815 (HY000): Internal : Can't find a proper physical plan for this query
4. What is your TiDB version? (Required)
master.
The text was updated successfully, but these errors were encountered: