forked from apache/cassandra-gocql-driver
-
Notifications
You must be signed in to change notification settings - Fork 59
/
example_dynamic_columns_test.go
101 lines (90 loc) · 2.69 KB
/
example_dynamic_columns_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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
package gocql_test
import (
"context"
"fmt"
"github.com/gocql/gocql"
"log"
"os"
"reflect"
"text/tabwriter"
)
// Example_dynamicColumns demonstrates how to handle dynamic column list.
func Example_dynamicColumns() {
/* The example assumes the following CQL was used to setup the keyspace:
create keyspace example with replication = { 'class' : 'SimpleStrategy', 'replication_factor' : 1 };
create table example.table1(pk text, ck int, value1 text, value2 int, PRIMARY KEY(pk, ck));
insert into example.table1 (pk, ck, value1, value2) values ('a', 1, 'b', 2);
insert into example.table1 (pk, ck, value1, value2) values ('c', 3, 'd', 4);
insert into example.table1 (pk, ck, value1, value2) values ('c', 5, null, null);
create table example.table2(pk int, value1 timestamp, PRIMARY KEY(pk));
insert into example.table2 (pk, value1) values (1, '2020-01-02 03:04:05');
*/
cluster := gocql.NewCluster("localhost:9042")
cluster.Keyspace = "example"
cluster.ProtoVersion = 4
session, err := cluster.CreateSession()
if err != nil {
log.Fatal(err)
}
defer session.Close()
printQuery := func(ctx context.Context, session *gocql.Session, stmt string, values ...interface{}) error {
iter := session.Query(stmt, values...).WithContext(ctx).Iter()
fmt.Println(stmt)
w := tabwriter.NewWriter(os.Stdout, 0, 0, 1, ' ',
0)
for i, columnInfo := range iter.Columns() {
if i > 0 {
fmt.Fprint(w, "\t| ")
}
fmt.Fprintf(w, "%s (%s)", columnInfo.Name, columnInfo.TypeInfo)
}
for {
rd, err := iter.RowData()
if err != nil {
return err
}
if !iter.Scan(rd.Values...) {
break
}
fmt.Fprint(w, "\n")
for i, val := range rd.Values {
if i > 0 {
fmt.Fprint(w, "\t| ")
}
fmt.Fprint(w, reflect.Indirect(reflect.ValueOf(val)).Interface())
}
}
fmt.Fprint(w, "\n")
w.Flush()
fmt.Println()
return iter.Close()
}
ctx := context.Background()
err = printQuery(ctx, session, "SELECT * FROM table1")
if err != nil {
log.Fatal(err)
}
err = printQuery(ctx, session, "SELECT value2, pk, ck FROM table1")
if err != nil {
log.Fatal(err)
}
err = printQuery(ctx, session, "SELECT * FROM table2")
if err != nil {
log.Fatal(err)
}
// SELECT * FROM table1
// pk (varchar) | ck (int) | value1 (varchar) | value2 (int)
// a | 1 | b | 2
// c | 3 | d | 4
// c | 5 | | 0
//
// SELECT value2, pk, ck FROM table1
// value2 (int) | pk (varchar) | ck (int)
// 2 | a | 1
// 4 | c | 3
// 0 | c | 5
//
// SELECT * FROM table2
// pk (int) | value1 (timestamp)
// 1 | 2020-01-02 03:04:05 +0000 UTC
}