-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathquery.sql.go
More file actions
41 lines (37 loc) · 827 Bytes
/
query.sql.go
File metadata and controls
41 lines (37 loc) · 827 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.22.0
// source: query.sql
package querytest
import (
"context"
)
const testSubqueryUnion = `-- name: TestSubqueryUnion :many
SELECT tmp.id, tmp.name, tmp.bio FROM (
SELECT id, name, bio FROM authors
UNION
SELECT id, name, bio FROM authors
) tmp LIMIT 5
`
func (q *Queries) TestSubqueryUnion(ctx context.Context) ([]Author, error) {
rows, err := q.db.QueryContext(ctx, testSubqueryUnion)
if err != nil {
return nil, err
}
defer rows.Close()
var items []Author
for rows.Next() {
var i Author
if err := rows.Scan(&i.ID, &i.Name, &i.Bio); err != nil {
return nil, err
}
items = append(items, i)
}
if err := rows.Close(); err != nil {
return nil, err
}
if err := rows.Err(); err != nil {
return nil, err
}
return items, nil
}