Jeremy

Results 40 issues of Jeremy

Hi there, I am a developer from [Databend](https://github.com/datafuselabs/databend), which is built in Rust, is an open-source cloud data warehouse that serves as a cost-effective warehouse. This pr add the New...

type/docs
type/new module

### Search before asking - [X] I had searched in the [issues](https://github.com/datafuselabs/databend/issues) and found no similar issues. ### Version Databend Query v1.2.598-nightly-812688f7b6(rust-1.81.0-nightly-2024-08-05T22:07:38.113740317Z) ### What's Wrong? Using java insert into the...

C-bug

Because the query-id format in databend query will be changed from a-b-c-d to abcd in this https://github.com/databendlabs/databend/pull/17947, so the driver need to do the same. We change the code where...

Because the query-id format in databend query will be changed from a-b-c-d to abcd in this https://github.com/databendlabs/databend/pull/17947, so the driver need to do the same. We change the code where...

### What would you like to be added or enhanced? What would you like to be added or enhanced? [Databend](https://github.com/databendlabs/databend) is built in Rust, an open-source cloud data warehouse. With...

Feature

We received requests from ByteBase users who expect to integrate with Databend, so we added support for this data source. Fix https://github.com/bytebase/bytebase/issues/6829

Get affected_rows from response data.

re-produce code: ```go package main import ( "database/sql" "sync" _ "github.com/datafuselabs/databend-go" ) func main() { conn, err := sql.Open("databend", "http://databend:databend@localhost:8009/default?sslmode=disable") if err != nil { panic(err) } conn.SetMaxIdleConns(3) conn.SetMaxOpenConns(3) _,...