mirror of
https://github.com/MariaDB/server.git
synced 2025-02-15 18:05:32 +01:00
![Sergei Golubchik](/assets/img/avatar_default.png)
if we don't need to print field's table name, we surely don't need to print field's db name either
9 lines
291 B
Text
9 lines
291 B
Text
#
|
|
# MDEV-13209 Cross-database operation with virtual columns fails
|
|
#
|
|
create database mysqltest1;
|
|
create table mysqltest1.t1 (i int, j int as (i) persistent);
|
|
show create table mysqltest1.t1;
|
|
alter table mysqltest1.t1 add index (i);
|
|
show create table mysqltest1.t1;
|
|
drop database mysqltest1;
|