Support server protocol
Hello, thanks for creating clickhouse-rs, you really did a great job and I doubt I can do better than that.
Is that any plan to support server protocol? Such as https://github.com/jonhoo/msql-srv.
I decide to implement such a crate to play like clickhouse-server. I found lots of codes that can be reused from clickhouse-rs. Such as the types crate.
But some functions and fields are pub(crate) or private, so I can't just have them as third-party dependencies.
There are some options and I'd like to hear your advice in advance, thank you.
- introduce clickhouse server protocol to
clickhouse-rsin this repo - making another repo and reusing some code from
clickhouse-rs(license compatible)
Hello. Next week I'll try to write some app which emulates work of clickhouse server.
Ok, I have forked to https://github.com/sundy-li/clickhouse-rs, I'll do some modifications for fast POC.