Skip to content

Commit

Permalink
Use bind instead of Bind internally
Browse files Browse the repository at this point in the history
  • Loading branch information
fanyang01 committed Nov 13, 2024
1 parent e73575f commit 4761977
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arrow.go
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ func (a *Arrow) execute(s *Stmt, args []driver.NamedValue) (*C.duckdb_arrow, err
return nil, errClosedCon
}

if err := s.Bind(args); err != nil {
if err := s.bind(args); err != nil {
return nil, err
}

Expand Down

0 comments on commit 4761977

Please sign in to comment.