mirror of
https://github.com/MariaDB/server.git
synced 2025-02-01 19:41:47 +01:00
955ef1b536
git-svn-id: file:///svn/mysql/tests/mysql-test@48560 c7de825b-a66e-492c-adef-691d508d4ae1
11 lines
586 B
Text
11 lines
586 B
Text
SET DEFAULT_STORAGE_ENGINE='tokudb';
|
|
DROP TABLE IF EXISTS foo;
|
|
set session tokudb_disable_slow_alter=ON;
|
|
create table foo (a int, b int, c int, d int as (a mod 10) virtual, key(a))engine=TokuDB;
|
|
ERROR HY000: TokuDB storage engine does not support computed columns
|
|
create table foo (a int, b int, c int)engine=TokuDB;
|
|
alter table foo add column d int as (a mod 10) virtual;
|
|
ERROR HY000: TokuDB storage engine does not support computed columns
|
|
alter table foo add column d int as (a mod 10) persistent;
|
|
ERROR HY000: TokuDB storage engine does not support computed columns
|
|
drop table foo;
|