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!
CREATE TABLE IDT_9903 (COL1 LONGBLOB,COL2 SMALLINT(4),COL3 DATETIME(2),KEY U_M_COL(COL1(10),COL2,COL3)); prepare stmt from 'select t1.col1, t2.col2 from IDT_9903 as t1 inner join IDT_9903 as t2 on t1.col1 = t2.col1 where t1.col1 = ?;'; execute stmt using@a;
mysql root@127.0.0.1:test> CREATE TABLE IDT_9903 (COL1 LONGBLOB,COL2 SMALLINT(4),COL3 DATETIME(2),KEY U_M_COL(COL1(10),COL2,COL3)); Query OK, 0 rows affected Time: 0.006s mysql root@127.0.0.1:test> prepare stmt from 'select t1.col1, t2.col2 from IDT_9903 as t1 inner join IDT_9903 as t2 on t1.col1 = t2.col1 where t1.col1 = ?;'; Query OK, 0 rows affected Time: 0.001s mysql root@127.0.0.1:test> set @a=NULL; Query OK, 0 rows affected Time: 0.001s mysql root@127.0.0.1:test> execute stmt using@a; +------+------+ | col1 | col2 | +------+------+
mysql root@127.0.0.1:test> CREATE TABLE IDT_9903 (COL1 LONGBLOB,COL2 SMALLINT(4),COL3 DATETIME(2),KEY U_M_COL(COL1(10),COL2,COL3)); Query OK, 0 rows affected Time: 0.006s mysql root@127.0.0.1:test> prepare stmt from 'select t1.col1, t2.col2 from IDT_9903 as t1 inner join IDT_9903 as t2 on t1.col1 = t2.col1 where t1.col1 = ?;'; Query OK, 0 rows affected Time: 0.001s mysql root@127.0.0.1:test> set @a=NULL; Query OK, 0 rows affected Time: 0.001s mysql root@127.0.0.1:test> execute stmt using@a; (1815, "Internal : Can't find a proper physical plan for this query")
master 550ca8e 5.0-rc f41ca49
The text was updated successfully, but these errors were encountered:
Fixed by #23238.
Sorry, something went wrong.
Note: Make Sure that 'component', and 'severity' labels are added Example for how to fill out the template: #20100
No branches or pull requests
Bug Report
Please answer these questions before submitting your issue. Thanks!
1. Minimal reproduce step (Required)
2. What did you expect to see? (Required)
3. What did you see instead (Required)
4. What is your TiDB version? (Required)
master 550ca8e
5.0-rc f41ca49
The text was updated successfully, but these errors were encountered: