v.22.6New Feature

Support INSERTs into system.zookeeper table

Support INSERTs into system.zookeeper table. Closes #22130. #37596 (Han Fei).
Support INSERT operations into the system.zookeeper table in ClickHouse.

Why it matters

This feature enables users to write data directly into the system.zookeeper table, allowing for easier manipulation and management of ZooKeeper data within ClickHouse. It addresses the limitation of only being able to read from this system table and facilitates more flexible interaction with ZooKeeper nodes.

How to use it

Users can perform INSERT statements targeting the system.zookeeper table like any other table in ClickHouse. For example:

INSERT INTO system.zookeeper (path, data) VALUES ('/example_path', 'example_data');