Expr sets the expr for the column <!> Incompatible with ColumnValues
(v string)
| 52 | // Expr sets the expr for the column |
| 53 | // <!> Incompatible with ColumnValues |
| 54 | func Expr(v string) ColumnOption { |
| 55 | return func(opts *ColumnOptions) { |
| 56 | opts.Expr = v |
| 57 | } |
| 58 | } |
| 59 | |
| 60 | // Values fills the column with the values |
| 61 | // <!> Incompatible with ColumnExpr |
no outgoing calls