v.19.1New Features
Added Compression Codec Delta
Why it matters
TheDelta compression codec provides efficient compression for data where consecutive values have small differences, improving storage efficiency and potentially speeding up data processing by reducing disk I/O.How to use it
Users can apply theDelta codec by specifying it in the table schema's column definition or when setting compression codecs explicitly. For example, use CODEC(Delta) in the table DDL to enable this compression on a column.