Hi,
is it possible to Comment a Part of a DDL to just get used on percona server?
I want to use the Percona exclusive compressed column in a Projekt which needs to be compatible to mysql / mariadb too.
When i try it like this
create table `test`
(
`id` bigint unsigned not null auto_increment
`file` LONGBLOB /*!50633 COLUMN_FORMAT COMPRESSED */ null,
`created_at` timestamp null,
`updated_at` timestamp null
) default character set utf8mb4
collate 'utf8mb4_unicode_ci'
the create table works on percona, but a mysql or a mariadb server creates a
Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'COMPRESSED */ null,