Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Support :many key=group_id to return a map instead of a slice
issue #2353
  • Loading branch information
Jille committed Jun 28, 2023
commit 35b88d58d367bba3620897ac71dda8625acc5dc9
22 changes: 22 additions & 0 deletions internal/codegen/golang/query.go
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,8 @@ type Query struct {
SourceName string
Ret QueryValue
Arg QueryValue
ManyKey string // Taken from CmdParams.ManyKey, the map-key for :many. If empty a slice should be returned.
ManyKeyType string // The Go type of ManyKey
// Used for :copyfrom
Table *plugin.Identifier
}
Expand All @@ -219,3 +221,23 @@ func (q Query) TableIdentifier() string {
}
return "[]string{" + strings.Join(escapedNames, ", ") + "}"
}

func (v Query) DefineRetTypeMultiple() string {
if v.ManyKey != "" {
return "map[" + v.ManyKeyType + "]" + v.Ret.DefineType()
}
return "[]" + v.Ret.DefineType()
}

func (v Query) HasManyKey() bool {
return v.ManyKey != ""
}

func (v Query) ManyKeyField() string {
for _, f := range v.Ret.Struct.Fields {
if f.DBName == v.ManyKey {
return v.Ret.Name + "." + f.Name
}
}
panic("couldn't find :many-key in struct fields")
}
15 changes: 15 additions & 0 deletions internal/codegen/golang/result.go
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,9 @@ func buildQueries(req *plugin.CodeGenRequest, structs []Struct) ([]Query, error)
}

if len(query.Columns) == 1 && query.Columns[0].EmbedTable == nil {
if query.CmdParams.GetManyKey() != "" {
return nil, fmt.Errorf(":many key=%s query %s has only one column", query.CmdParams.GetManyKey(), query.Name)
}
c := query.Columns[0]
name := columnName(c, 0)
if c.IsFuncCall {
Expand Down Expand Up @@ -305,6 +308,18 @@ func buildQueries(req *plugin.CodeGenRequest, structs []Struct) ([]Query, error)
SQLDriver: sqlpkg,
EmitPointer: req.Settings.Go.EmitResultStructPointers,
}
if query.CmdParams.GetManyKey() != "" {
gq.ManyKey = query.CmdParams.GetManyKey()
for _, c := range gs.Fields {
if c.DBName == gq.ManyKey {
gq.ManyKeyType = c.Type
break
}
}
if gq.ManyKeyType == "" {
return nil, fmt.Errorf("can not find key column %q in query %s", gq.ManyKey, gq.MethodName)
}
}
}

qs = append(qs, gq)
Expand Down
12 changes: 8 additions & 4 deletions internal/codegen/golang/templates/stdlib/queryCode.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -35,23 +35,27 @@ func (q *Queries) {{.MethodName}}(ctx context.Context, {{ dbarg }} {{.Arg.Pair}}
{{if eq .Cmd ":many"}}
{{range .Comments}}//{{.}}
{{end -}}
func (q *Queries) {{.MethodName}}(ctx context.Context, {{ dbarg }} {{.Arg.Pair}}) ([]{{.Ret.DefineType}}, error) {
func (q *Queries) {{.MethodName}}(ctx context.Context, {{ dbarg }} {{.Arg.Pair}}) ({{.DefineRetTypeMultiple}}, error) {
{{- template "queryCodeStdExec" . }}
if err != nil {
return nil, err
}
defer rows.Close()
{{- if $.EmitEmptySlices}}
items := []{{.Ret.DefineType}}{}
{{- if (or $.EmitEmptySlices .HasManyKey)}}
items := {{.DefineRetTypeMultiple}}{}
{{else}}
var items []{{.Ret.DefineType}}
var items {{.DefineRetTypeMultiple}}
{{end -}}
for rows.Next() {
var {{.Ret.Name}} {{.Ret.Type}}
if err := rows.Scan({{.Ret.Scan}}); err != nil {
return nil, err
}
{{- if .HasManyKey}}
items[{{.ManyKeyField}}] = {{.Ret.ReturnName}}
{{else}}
items = append(items, {{.Ret.ReturnName}})
{{end -}}
}
if err := rows.Close(); err != nil {
return nil, err
Expand Down
31 changes: 31 additions & 0 deletions internal/endtoend/testdata/manykey/stdlib/go/db.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions internal/endtoend/testdata/manykey/stdlib/go/models.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

42 changes: 42 additions & 0 deletions internal/endtoend/testdata/manykey/stdlib/go/query.sql.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions internal/endtoend/testdata/manykey/stdlib/query.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
CREATE TABLE foo (
group_id INT NOT NULL,
score INT NOT NULL
);

-- name: SelectScoreSums :many key=group_id
SELECT group_id, SUM(score) FROM foo GROUP BY group_id;
11 changes: 11 additions & 0 deletions internal/endtoend/testdata/manykey/stdlib/sqlc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"version": "1",
"packages": [
{
"path": "go",
"name": "querytest",
"schema": "query.sql",
"queries": "query.sql"
}
]
}