aliasExpr helps to alias part of SQL query generated with underlying "expr"
| 113 | |
| 114 | // aliasExpr helps to alias part of SQL query generated with underlying "expr" |
| 115 | type aliasExpr struct { |
| 116 | expr Sqlizer |
| 117 | alias string |
| 118 | } |
| 119 | |
| 120 | // Alias allows to define alias for column in SelectBuilder. Useful when column is |
| 121 | // defined as complex expression like IF or CASE |
nothing calls this directly
no outgoing calls
no test coverage detected