Skip to content

Commit

Permalink
fix: paramSQL
Browse files Browse the repository at this point in the history
  • Loading branch information
alexisvisco committed Dec 8, 2023
1 parent b82480e commit d4f9703
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testfixtures.go
Original file line number Diff line number Diff line change
Expand Up @@ -698,7 +698,7 @@ func (l *Loader) paramSQL(index int) string {
case paramTypeDollar:
return fmt.Sprintf("$%d", index)
case paramTypeAtSign:
fmt.Sprintf("@p%d", index
return fmt.Sprintf("@p%d", index)
default:
return "?"
}
Expand Down

0 comments on commit d4f9703

Please sign in to comment.