2017-07-28 10:54:32 +02:00
|
|
|
package qb
|
|
|
|
|
|
|
|
|
|
// Builder is interface implemented by all the builders.
|
|
|
|
|
type Builder interface {
|
|
|
|
|
// ToCql builds the query into a CQL string and named args.
|
|
|
|
|
ToCql() (stmt string, names []string)
|
2017-07-28 10:18:38 +02:00
|
|
|
}
|
2017-08-02 11:12:31 +02:00
|
|
|
|
|
|
|
|
// M is a map.
|
|
|
|
|
type M map[string]interface{}
|