()
| 94 | } |
| 95 | func (q *CreateTableQuery) Operation() string { return "CREATE TABLE" } |
| 96 | func (q *CreateTableQuery) String() string { |
| 97 | b, err := q.AppendQuery(q.db.Formatter(), nil) |
| 98 | if err != nil { |
| 99 | return err.Error() |
| 100 | } |
| 101 | return unsafeconv.String(b) |
| 102 | } |
| 103 | |
| 104 | var _ chschema.QueryAppender = (*CreateTableQuery)(nil) |
| 105 |
nothing calls this directly
no test coverage detected