mirror of
https://github.com/MariaDB/server.git
synced 2025-02-09 23:24:11 +01:00
![Sergei Golubchik](/assets/img/avatar_default.png)
Aria supports virtual columns, but does not support indexes on virtual columns. Let's issue an appropriate error in this case.
2 lines
141 B
Text
2 lines
141 B
Text
create table t1 (a int, b int as (a+1), c int, index(b)) engine=aria;
|
|
ERROR HY000: Key/Index cannot be defined on a virtual generated column
|