Releases: bakwc/mysql_ch_replicator
Releases · bakwc/mysql_ch_replicator
v0.0.92
v0.0.91
v0.0.90
What's Changed
- Fixed utf-8 issue by @Deniskore in #166
- Set bind address by @bakwc in #167
Full Changelog: v0.0.89...v0.0.90
v0.0.89
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
v0.0.86
v0.0.85
What's Changed
- Updated docker base image version by @bakwc in #158
- Fix: Properly escape SQL identifiers to handle reserved keywords like
keyby @liandong00 in #162
New Contributors
- @liandong00 made their first contribution in #162
Full Changelog: v0.0.84...v0.0.85