Skip to content

Commit

Permalink
fix missing value for %s in panic
Browse files Browse the repository at this point in the history
  • Loading branch information
ZelvaMan committed Apr 24, 2024
1 parent c5378a7 commit e016865
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dbGen/preprocess.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ func markOverloadedRoutines(routines *[]DbRoutine, config *Config) error {
schemaConfig, exists := schemaMap[routine.RoutineSchema]

if !exists {
panic(fmt.Sprintf("schema config for schema %s missing"))
panic(fmt.Sprintf("schema config for schema %s missing", routine.RoutineSchema))
}

// enforce that overloaded routine has to have mapping
Expand Down

0 comments on commit e016865

Please sign in to comment.