-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexample.go
47 lines (38 loc) · 968 Bytes
/
example.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
package tables
import (
"context"
"database/sql"
"fmt"
"time"
"github.com/ClickHouse/clickhouse-go/v2/lib/driver"
"github.com/zikwall/clickhouse-buffer/v4/src/cx"
)
type ExampleTable struct {
ID int32
UUID string
InsertTS time.Time
}
func (t *ExampleTable) Row() cx.Vector {
return cx.Vector{t.ID, t.UUID, t.InsertTS.Format(time.RFC822)}
}
func ExampleTableName() string {
return "default.example"
}
func ExampleTableColumns() []string {
return []string{"id", "uuid", "insert_ts"}
}
// nolint:gochecknoglobals // it's OK
var createTableQuery = fmt.Sprintf(`
CREATE TABLE IF NOT EXISTS %s (
id Int32,
uuid String,
insert_ts String
) engine=Memory
`, ExampleTableName())
func CreateTableNative(ctx context.Context, conn driver.Conn) error {
return conn.Exec(ctx, createTableQuery)
}
func CreateTableSQL(ctx context.Context, conn *sql.DB) error {
_, err := conn.ExecContext(ctx, createTableQuery)
return err
}