ALTER TABLE t ADD COLUMN c UInt8 AFTER a
-- sql parser error: Expected: end of statement, found: AFTER
ClickHouse supports this, and the parser already handles it for MySQL. parse_column_position is hardcoded to dialect_of!(MySqlDialect | GenericDialect), and this should become a Dialect trait method so ClickHouse can enable it.
ClickHouse supports this, and the parser already handles it for MySQL.
parse_column_positionis hardcoded todialect_of!(MySqlDialect | GenericDialect), and this should become aDialecttrait method so ClickHouse can enable it.