-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathexample_query_lambda_test.go
74 lines (57 loc) · 1.26 KB
/
example_query_lambda_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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
package rockset_test
import (
"context"
"fmt"
"log"
"github.com/rockset/rockset-go-client"
"github.com/rockset/rockset-go-client/option"
)
func ExampleRockClient_queryLambda() {
ctx := context.TODO()
rc, err := rockset.NewClient()
if err != nil {
log.Fatal(err)
}
r, err := rc.ExecuteQueryLambda(ctx, "commons", "eventType")
if err != nil {
log.Fatal(err)
}
for _, c := range r.Collections {
fmt.Printf("collection: %s\n", c)
}
// Output:
// collection: commons._events
}
func ExampleRockClient_queryLambdaByTag() {
ctx := context.TODO()
rc, err := rockset.NewClient()
if err != nil {
log.Fatal(err)
}
r, err := rc.ExecuteQueryLambda(ctx, "commons", "eventType", option.WithTag("test"))
if err != nil {
log.Fatal(err)
}
for _, c := range r.Collections {
fmt.Printf("collection: %s\n", c)
}
// Output:
// collection: commons._events
}
func ExampleRockClient_queryLambdaByVersion() {
ctx := context.TODO()
rc, err := rockset.NewClient()
if err != nil {
log.Fatal(err)
}
r, err := rc.ExecuteQueryLambda(ctx, "commons", "eventType",
option.WithVersion("e4e67e8835063d03"))
if err != nil {
log.Fatal(err)
}
for _, c := range r.Collections {
fmt.Printf("collection: %s\n", c)
}
// Output:
// collection: commons._events
}