mariadb/mysql-test/suite/vcol/t/cross_db.test
Sergei Golubchik 0559f12972 MDEV-13209 Cross-database operation with virtual columns fails
if we don't need to print field's table name,
we surely don't need to print field's db name either
2017-07-05 17:15:59 +02:00

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;