Skip to content

Releases: bakwc/mysql_ch_replicator

v0.0.92

12 Jul 13:48
cdc044e

Choose a tag to compare

What's Changed

Full Changelog: v0.0.91...v0.0.92

v0.0.91

09 Jul 11:17
c04b162

Choose a tag to compare

What's Changed

Full Changelog: v0.0.90...v0.0.91

v0.0.90

06 Jul 14:13
306d35a

Choose a tag to compare

What's Changed

Full Changelog: v0.0.89...v0.0.90

v0.0.89

29 Jun 19:50
6b81394

Choose a tag to compare

What's Changed

  • Add customizable PARTITION BY support for ClickHouse tables by @bakwc in #164
  • Fix TRUNCATE operation not replicated to ClickHouse by @bakwc in #165

Full Changelog: v0.0.86...v0.0.89

v0.0.87

29 Jun 18:38

Choose a tag to compare

New Features

🎉 Customizable PARTITION BY Support for ClickHouse Tables

  • New Configuration Option: Added partition_bys config section with database/table filtering capabilities (similar to existing indexes configuration)
  • 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

29 Jun 16:49
0a53255

Choose a tag to compare

What's Changed

  • Fix CREATE TABLE parsing with multiple spaces by @bakwc in #163

Full Changelog: v0.0.85...v0.0.86

v0.0.85

25 Jun 22:19
c9efc16

Choose a tag to compare

What's Changed

  • Updated docker base image version by @bakwc in #158
  • Fix: Properly escape SQL identifiers to handle reserved keywords like key by @liandong00 in #162

New Contributors

Full Changelog: v0.0.84...v0.0.85

v0.0.84

09 Jun 07:04
7415f97

Choose a tag to compare

What's Changed

  • Proper restart of dead processes - fix for zombie processes by @bakwc in #157

Full Changelog: v0.0.83...v0.0.84

v0.0.83

06 May 20:40
82ee491

Choose a tag to compare

What's Changed

  • Fix alter table add key exception by @bakwc in #153

Full Changelog: v0.0.82...v0.0.83

v0.0.82

05 May 17:23
02f2302

Choose a tag to compare

What's Changed

  • Added option to ignore delete operation by @bakwc in #151

Full Changelog: v0.0.81...v0.0.82