Skip to content

Commit

Permalink
Switch to duckdb_execute_pending
Browse files Browse the repository at this point in the history
  • Loading branch information
marcboeker authored and k-anshul committed Jan 18, 2024
1 parent f76fa22 commit 04231da
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 14 deletions.
1 change: 0 additions & 1 deletion duckdb_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1101,7 +1101,6 @@ func TestParquetExtension(t *testing.T) {
}

func TestQueryTimeout(t *testing.T) {
t.Skip("TODO: fix blocking in duckdb_pending_execute_task first.")
db := openDB(t)
defer db.Close()

Expand Down
25 changes: 12 additions & 13 deletions statement.go
Original file line number Diff line number Diff line change
Expand Up @@ -203,28 +203,27 @@ func (s *stmt) execute(ctx context.Context, args []driver.NamedValue) (*C.duckdb
}
defer C.duckdb_destroy_pending(&pendingRes)

for {
done := make(chan bool)
defer close(done)

go func() {
select {
// if context is cancelled or deadline exceeded, don't execute further
case <-ctx.Done():
// also need to interrupt to cancel the query
C.duckdb_interrupt(*s.c.con)
return nil, ctx.Err()
default:
// continue
}
state := C.duckdb_pending_execute_task(pendingRes)
if state == C.DUCKDB_PENDING_ERROR {
dbErr := C.GoString(C.duckdb_pending_error(pendingRes))
return nil, errors.New(dbErr)
}
if C.duckdb_pending_execution_is_finished(state) {
break
return
case <-done:
return
}
}
}()

var res C.duckdb_result
if state := C.duckdb_execute_pending(pendingRes, &res); state == C.DuckDBError {
if ctx.Err() != nil {
return nil, ctx.Err()
}

dbErr := C.GoString(C.duckdb_result_error(&res))
C.duckdb_destroy_result(&res)
return nil, errors.New(dbErr)
Expand Down

0 comments on commit 04231da

Please sign in to comment.