mirror of
https://github.com/MariaDB/server.git
synced 2025-08-21 16:03:24 +03:00
if we don't need to print field's table name, we surely don't need to print field's db name either
10 lines
291 B
Plaintext
10 lines
291 B
Plaintext
#
|
|
# 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;
|