v.19.1New Features

Added Compression Codec Delta

Added compression codec Delta. #4052 (alesapin)
Added a new compression codec named Delta to ClickHouse.

Why it matters

The Delta 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 the Delta 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.