forked from sqlc-dev/sqlc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquery.sql.go
More file actions
54 lines (48 loc) · 891 Bytes
/
query.sql.go
File metadata and controls
54 lines (48 loc) · 891 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
// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.13.0
// source: query.sql
package querytest
import (
"context"
"database/sql"
"github.com/jackc/pgtype"
)
const listNullable = `-- name: ListNullable :many
SELECT
NULL::text as a,
NULL::integer as b,
NULL::bigint as c,
NULL::time as d
FROM foo
`
type ListNullableRow struct {
A sql.NullString
B sql.NullInt32
C sql.NullInt64
D pgtype.Time
}
func (q *Queries) ListNullable(ctx context.Context) ([]ListNullableRow, error) {
rows, err := q.db.Query(ctx, listNullable)
if err != nil {
return nil, err
}
defer rows.Close()
var items []ListNullableRow
for rows.Next() {
var i ListNullableRow
if err := rows.Scan(
&i.A,
&i.B,
&i.C,
&i.D,
); err != nil {
return nil, err
}
items = append(items, i)
}
if err := rows.Err(); err != nil {
return nil, err
}
return items, nil
}