Auxten Wang

Results 141 comments of Auxten Wang

Here is the plan: 1. Disable the singal handlers in libchdb, https://github.com/chdb-io/chdb/issues/321 2. Update chdb-node to libchdb v3 which has better support for stateful usage

Would you like chDB print a progress bar on console or notebook? Or, you need a async way to query and a getProgress function?

Thank you, that's a good suggestion. And it's possible after chdb 2.3 release which move most heavy lifting works out of query function.

It a macOS compiling flags issue, should be issue of [build.sh](https://github.com/chdb-io/chdb/blob/main/chdb/build.sh)

This is because `new Session("./dir_for_table_already_exists")` create session in the same dir. After create the new table `testtable` you didn't call `session.cleanup()`. So, the second time you use the same dir...

Thanks, I understand. Currently, chDB session implementation is a little tricky. Like I explained here: https://github.com/orgs/chdb-io/discussions/196#discussioncomment-8406116 Here is the plan: https://github.com/chdb-io/chdb/issues/197#issuecomment-2327976725

Nice, you are right. This style is more Node JS style. I will try to sort it out how to do that. But frankly speaking, I'm not a JS expert....

Wow, thank you so much @mgrenonville. Let me release the production version of v2.2 first. After that let review it

in chdb v3.0, there could be only 1 session in the process. see [release note](https://github.com/chdb-io/chdb/releases/tag/v3.0.0) Session Behavior part: ``` Session Behavior - Sessions maintain query state throughout their lifecycle -...