-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample_array_test.go
42 lines (35 loc) · 1020 Bytes
/
example_array_test.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
package pg_test
import (
"fmt"
"github.com/go-pg/pg"
)
func ExampleDB_Model_postgresArrayStructTag() {
type Item struct {
Id int64
Emails []string `pg:",array"` // marshalled as PostgreSQL array
Numbers [][]int `pg:",array"` // marshalled as PostgreSQL array
}
_, err := pgdb.Exec(`CREATE TEMP TABLE items (id serial, emails text[], numbers int[][])`)
panicIf(err)
defer pgdb.Exec("DROP TABLE items")
item1 := Item{
Id: 1,
Emails: []string{"[email protected]", "[email protected]"},
Numbers: [][]int{{1, 2}, {3, 4}},
}
err = pgdb.Insert(&item1)
panicIf(err)
item := new(Item)
err = pgdb.Model(item).Where("id = ?", 1).Select()
panicIf(err)
fmt.Println(item)
// Output: &{1 [[email protected] [email protected]] [[1 2] [3 4]]}
}
func ExampleArray() {
src := []string{"[email protected]", "[email protected]"}
var dst []string
_, err := pgdb.QueryOne(pg.Scan(pg.Array(&dst)), `SELECT ?`, pg.Array(src))
panicIf(err)
fmt.Println(dst)
// Output: [[email protected] [email protected]]
}