We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f570b0 commit 0872ac1Copy full SHA for 0872ac1
sql/base_session.go
@@ -270,7 +270,7 @@ func (s *BaseSession) GetStoredProcParam(name string) *StoredProcParam {
270
271
func (s *BaseSession) SetStoredProcParam(name string, val any) error {
272
param := s.GetStoredProcParam(name)
273
- if param == nil {
+ if param == nil {
274
return fmt.Errorf("variable `%s` could not be found", name)
275
}
276
param.SetValue(val)
0 commit comments