forked from gohouse/gorose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
builder_clickhouse.go
42 lines (35 loc) · 1.25 KB
/
builder_clickhouse.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 gorose
const (
// DriverClickhouse ...
DriverClickhouse = "clickhouse"
)
// BuilderClickhouse ...
type BuilderClickhouse struct {
FieldQuotesDefault
//IOrm
driver string
}
// sqlstr := fmt.Sprintf("SELECT %s%s FROM %s%s%s%s%s%s%s%s",
// distinct, fields, table, join, where, group, having, order, limit, offset)
// select {distinct} {fields} from {table} {join} {where} {group} {having} {order} {limit} {offset}
// {execute} {table} {data} {where}
func init() {
var builder = &BuilderClickhouse{}
NewBuilderDriver().Register(DriverClickhouse, builder)
}
// NewBuilderClickhouse ...
func NewBuilderClickhouse() *BuilderClickhouse {
return new(BuilderClickhouse)
}
// Clone : a new obj
func (b *BuilderClickhouse) Clone() IBuilder {
return &BuilderClickhouse{}
}
// BuildQuery : build query sql string
func (b *BuilderClickhouse) BuildQuery(o IOrm) (sqlStr string, args []interface{}, err error) {
return NewBuilderDefault(o, NewBuilderClickhouse()).SetDriver(DriverClickhouse).BuildQuery()
}
// BuildExecut : build execute sql string
func (b *BuilderClickhouse) BuildExecute(o IOrm, operType string) (sqlStr string, args []interface{}, err error) {
return NewBuilderDefault(o, NewBuilderClickhouse()).SetDriver(DriverClickhouse).BuildExecute(operType)
}