Skip to content

Commit

Permalink
remove qpl check
Browse files Browse the repository at this point in the history
  • Loading branch information
go-mez committed Apr 1, 2023
1 parent bf903c2 commit 0a12f6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/codegen/golang/result.go
Expand Up @@ -171,7 +171,7 @@ func buildQueries(req *plugin.CodeGenRequest, structs []Struct) ([]Query, error)
Typ: goType(req, p.Column),
SQLDriver: sqlpkg,
}
} else if len(query.Params) >= 1 && (qpl >= 0) {
} else if len(query.Params) >= 1 {
var cols []goColumn
for _, p := range query.Params {
cols = append(cols, goColumn{
Expand Down

0 comments on commit 0a12f6b

Please sign in to comment.