Details
-
Bug
-
Status: Closed (View Workflow)
-
Minor
-
Resolution: Fixed
-
10.3(EOL), 10.4(EOL), 10.5, 10.6, 10.7(EOL), 10.8(EOL)
Description
Test:
create table t2 (a int);
|
select count(*) from t2;
|
drop table t2;
|
|
|
create database mysqltest;
|
use mysqltest;
|
create table t1 (a int);
|
select t1.a from mysqltest.t1;
|
drop database mysqltest;
|
use test;
|
Error:
mysqltest: At line 9: query 'select t1.a from mysqltest.t1' failed: ER_NO_SUCH_TABLE (1146): Table 'mysqltest.mysqltest_tmp_v' doesn't exist
|
After fix this bug view-protocol should be enable in tests: main.lowercase_table, main.cte_nonrecursive
Attachments
Issue Links
- is part of
-
MDEV-27691 make working view-protocol
- Open