Hi,
is that auto_increment are possible ?
MariaDB [mcs]> CREATE TABLE `test_numauto` ( `num_auto` int(11) NOT NULL AUTO_INCREMENT, `id_unique` int(11) NOT NULL ) ENGINE=columnstore;
ERROR 1075 (42000): Incorrect table definition; there can be only one auto column and it must be defined as a key
MariaDB [mcs]> CREATE TABLE `test_numauto` ( `num_auto` int(11) NOT NULL AUTO_INCREMENT, `id_unique` int(11) NOT NULL,PRIMARY KEY (`num_auto`) ) ENGINE=columnstore;
ERROR 1069 (42000): Too many keys specified; max 0 keys allowed
Thnaks
Pierre