1package db
2
3type RawSqlBuilder struct {
4	Query string
5}
6
7func (b *RawSqlBuilder) ToSQL() (string, error) {
8	return b.Query, nil
9}
10