v.22.5Improvement
Option compatibility_ignore_auto_increment_in_create_table Simplifies MySQL Migration
Optioncompatibility_ignore_auto_increment_in_create_tableallows ignoringAUTO_INCREMENTkeyword in a column declaration to simplify migration from MySQL. #37178 (Igor Nikonov).
Why it matters
This feature simplifies migration from MySQL by allowing ClickHouse to bypass theAUTO_INCREMENT attribute in CREATE TABLE statements, which is not natively supported.How to use it
Enable thecompatibility_ignore_auto_increment_in_create_table option when creating tables to ignore AUTO_INCREMENT in column definitions and ensure smoother MySQL to ClickHouse migrations.