(query string, args ...any)
| 125 | return q |
| 126 | } |
| 127 | func (q *SelectQuery) ColumnExpr(query string, args ...any) *SelectQuery { |
| 128 | q.addColumn(chschema.SafeQuery(query, args)) |
| 129 | return q |
| 130 | } |
| 131 | func (q *SelectQuery) ExcludeColumn(columns ...string) *SelectQuery { |
| 132 | q.excludeColumn(columns) |
| 133 | return q |
no test coverage detected