Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
scottlepp committed Mar 6, 2024
1 parent 36b5911 commit 8be988f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions duck/duckdb.go
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,9 @@ func defaultInt(val int, dflt int) int {
}

func resultsToFrame(name string, res string, f *sdk.Frame, frames []*sdk.Frame) error {
if res == "" {
return nil
}
var results []map[string]any
err := json.Unmarshal([]byte(res), &results)
if err != nil {
Expand Down

0 comments on commit 8be988f

Please sign in to comment.