You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem: Creating a column with a codec type throws an error.
Migration Repro:
ClickHouse.connection.create_table('visits', engine: 'MergeTree ORDER BY date') do |t|
t.Date :date, compression_codec: 'CODEC(DoubleDelta, ZSTD(1))'
end
Problem: Creating a column with a codec type throws an error.
Migration Repro:
Error:
In addition to
compression_codec
, trying to use:compression:
,codec:
, andcodec_expression:
all failed.I was able to work around the issue by using raw SQL.
It'd be great feature to have this as supported for DSL statements.
The text was updated successfully, but these errors were encountered: