v0.0.87
New Features
🎉 Customizable PARTITION BY Support for ClickHouse Tables
- New Configuration Option: Added
partition_bysconfig section with database/table filtering capabilities (similar to existingindexesconfiguration) - Custom Expressions: Override the default
intDiv(id, 4294967)partitioning with user-defined partition logic
Configuration Example
partition_bys:
- databases: '*'
tables: ['orders', 'user_events']
partition_by: 'toYYYYMM(created_at)'
- databases: ['analytics']
tables: ['*']
partition_by: 'toYYYYMMDD(event_date)'Full Changelog: v0.0.86...v0.0.87