2017-07-26 13:57:10 +02:00
|
|
|
package qb
|
|
|
|
|
|
|
|
|
|
// INSERT reference:
|
|
|
|
|
// http://docs.datastax.com/en/dse/5.1/cql/cql/cql_reference/cql_commands/cqlInsert.html
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"bytes"
|
|
|
|
|
"time"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type InsertBuilder struct {
|
|
|
|
|
table string
|
2017-07-27 09:48:33 +02:00
|
|
|
columns columns
|
2017-07-26 13:57:10 +02:00
|
|
|
unique bool
|
|
|
|
|
using using
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Insert returns a new InsertBuilder with the given table name.
|
|
|
|
|
func Insert(table string) *InsertBuilder {
|
|
|
|
|
return &InsertBuilder{
|
|
|
|
|
table: table,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-28 09:43:58 +02:00
|
|
|
func (b *InsertBuilder) ToCql() (stmt string, names []string) {
|
2017-07-26 13:57:10 +02:00
|
|
|
cql := bytes.Buffer{}
|
|
|
|
|
|
|
|
|
|
cql.WriteString("INSERT ")
|
|
|
|
|
|
|
|
|
|
cql.WriteString("INTO ")
|
|
|
|
|
cql.WriteString(b.table)
|
2017-07-27 09:48:33 +02:00
|
|
|
cql.WriteByte(' ')
|
2017-07-26 13:57:10 +02:00
|
|
|
|
2017-07-27 09:48:33 +02:00
|
|
|
cql.WriteByte('(')
|
|
|
|
|
b.columns.writeCql(&cql)
|
2017-07-26 13:57:10 +02:00
|
|
|
cql.WriteString(") ")
|
|
|
|
|
|
|
|
|
|
cql.WriteString("VALUES (")
|
2017-07-27 09:48:33 +02:00
|
|
|
placeholders(&cql, len(b.columns))
|
2017-07-26 13:57:10 +02:00
|
|
|
cql.WriteString(") ")
|
|
|
|
|
|
2017-07-27 09:48:33 +02:00
|
|
|
b.using.writeCql(&cql)
|
2017-07-26 13:57:10 +02:00
|
|
|
|
|
|
|
|
if b.unique {
|
|
|
|
|
cql.WriteString("IF NOT EXISTS ")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
stmt, names = cql.String(), b.columns
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (b *InsertBuilder) Into(table string) *InsertBuilder {
|
|
|
|
|
b.table = table
|
|
|
|
|
return b
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (b *InsertBuilder) Columns(columns ...string) *InsertBuilder {
|
|
|
|
|
b.columns = append(b.columns, columns...)
|
|
|
|
|
return b
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (b *InsertBuilder) Unique() *InsertBuilder {
|
|
|
|
|
b.unique = true
|
|
|
|
|
return b
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (b *InsertBuilder) Timestamp(t time.Time) *InsertBuilder {
|
|
|
|
|
b.using.timestamp = t
|
|
|
|
|
return b
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (b *InsertBuilder) TTL(d time.Duration) *InsertBuilder {
|
|
|
|
|
b.using.ttl = d
|
|
|
|
|
return b
|
|
|
|
|
}
|