mariadb/mysql-test/suite/vcol/t/vcol_keys_aria.test
Sergei Golubchik a9a362d3fd Aria: test for ER_KEY_BASED_ON_GENERATED_VIRTUAL_COLUMN
Aria supports virtual columns, but does not support indexes
on virtual columns. Let's issue an appropriate error in this case.
2016-12-12 20:44:46 +01:00

3 lines
151 B
Text

--source include/have_maria.inc
--error ER_KEY_BASED_ON_GENERATED_VIRTUAL_COLUMN
create table t1 (a int, b int as (a+1), c int, index(b)) engine=aria;