()
| 37 | } |
| 38 | |
| 39 | func (q *CreateTableQuery) String() string { |
| 40 | b, err := q.AppendQuery(defaultFmter, nil) |
| 41 | if err != nil { |
| 42 | panic(err) |
| 43 | } |
| 44 | return string(b) |
| 45 | } |
| 46 | |
| 47 | func (q *CreateTableQuery) Operation() QueryOp { |
| 48 | return CreateTableOp |
nothing calls this directly
no test coverage detected