-
Notifications
You must be signed in to change notification settings - Fork 859
/
Copy pathquery.sql.go
42 lines (35 loc) · 994 Bytes
/
query.sql.go
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
// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.26.0
// source: query.sql
package querytest
import (
"context"
"github.com/jackc/pgx/v5/pgtype"
)
const updateAttribute = `-- name: UpdateAttribute :one
with updated_attribute as (UPDATE attribute_value
SET
val = CASE WHEN $1::bool THEN $2 ELSE val END
WHERE attribute_value.id = $3
RETURNING id,attribute,val)
select updated_attribute.id, val, name
from updated_attribute
left join attribute on updated_attribute.attribute = attribute.id
`
type UpdateAttributeParams struct {
FilterValue bool
Value string
ID int64
}
type UpdateAttributeRow struct {
ID int64
Val string
Name pgtype.Text
}
func (q *Queries) UpdateAttribute(ctx context.Context, arg UpdateAttributeParams) (UpdateAttributeRow, error) {
row := q.db.QueryRow(ctx, updateAttribute, arg.FilterValue, arg.Value, arg.ID)
var i UpdateAttributeRow
err := row.Scan(&i.ID, &i.Val, &i.Name)
return i, err
}