-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathquery.sql.go
More file actions
56 lines (51 loc) · 1021 Bytes
/
query.sql.go
File metadata and controls
56 lines (51 loc) · 1021 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.30.0
// source: query.sql
package querytest
import (
"context"
"database/sql"
)
const allAuthors = `-- name: AllAuthors :many
SELECT a.id,
a.name,
p.id as alias_id,
p.name as alias_name
FROM authors a
LEFT JOIN authors p
ON (a.parent_id = p.id)
`
type AllAuthorsRow struct {
ID int32
Name string
AliasID sql.NullInt32
AliasName sql.NullString
}
func (q *Queries) AllAuthors(ctx context.Context) ([]AllAuthorsRow, error) {
rows, err := q.db.QueryContext(ctx, allAuthors)
if err != nil {
return nil, err
}
defer rows.Close()
var items []AllAuthorsRow
for rows.Next() {
var i AllAuthorsRow
if err := rows.Scan(
&i.ID,
&i.Name,
&i.AliasID,
&i.AliasName,
); 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
}