-
-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement chdb v3.0 Connect
method
#16
base: main
Are you sure you want to change the base?
Conversation
The old impl of query and the new one can not co-exist in one process. |
@agoncear-mwb are you still working on this? We should use the Connection base queryConn here instead. |
ok, so we should remove the old one? |
We need to try our best to keep the user side API stable, so the plan is:
|
Perfect, i'll try to keep the implementation as close as possible with the python binding |
This pr implements the new statefull session created in the v3.0.0 release.
For backward compatibility, at the moment, i kept the old session mechanism still avaiable, but i guess in future release we can remove it in favor of the new
ChdbConnection
which is equivalent in methods but handle the connection with the underlying clickhouse local in a better way.