Details
-
New Feature
-
Status: Done
-
Medium
-
Resolution: Fixed
-
8.0.x, Not 5.6.x, Not 5.7.x
Description
0Copied description from the MariaDB bug:
MyRocks-in-MariaDB doesn't support virtual columns:
create table sbtest1 (pad varchar(60)) engine=rocksdb;
MariaDB [j2]> ALTER TABLE sbtest1 ADD reverse_pad char(60) GENERATED ALWAYS AS (reverse(pad)) VIRTUAL;
ERROR 1910 (HY000): ROCKSDB storage engine does not support generated columns
Btw, Percona Server doesn't support them either:
MySQL [test]> ALTER TABLE sbtest1 ADD reverse_pad char(60) GENERATED ALWAYS AS (reverse(pad)) VIRTUAL; ERROR 3106 (HY000): 'Specified storage engine' is not supported for generated columns.