-
Notifications
You must be signed in to change notification settings - Fork 858
/
Copy pathquery.sql.go
55 lines (50 loc) · 1.3 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.26.0
// source: query.sql
package querytest
import (
"context"
)
const listCaseIntentHistory = `-- name: ListCaseIntentHistory :many
WITH RECURSIVE descendants AS
( SELECT case_intent_parent_id AS parent, case_intent_id AS child, 1 AS lvl
FROM case_intent_parent_join
UNION ALL
SELECT d.parent as parent, p.case_intent_id as child, d.lvl + 1 as lvl
FROM descendants d
JOIN case_intent_parent_join p
ON d.child = p.case_intent_parent_id
)
select distinct child, 'child' group_
from descendants
where parent = $1
union
select distinct parent, 'parent' group_
from descendants
where child = $1
ORDER BY child
`
type ListCaseIntentHistoryRow struct {
Child int64
Group string
}
func (q *Queries) ListCaseIntentHistory(ctx context.Context, caseIntentID int64) ([]ListCaseIntentHistoryRow, error) {
rows, err := q.db.Query(ctx, listCaseIntentHistory, caseIntentID)
if err != nil {
return nil, err
}
defer rows.Close()
var items []ListCaseIntentHistoryRow
for rows.Next() {
var i ListCaseIntentHistoryRow
if err := rows.Scan(&i.Child, &i.Group); err != nil {
return nil, err
}
items = append(items, i)
}
if err := rows.Err(); err != nil {
return nil, err
}
return items, nil
}