| 59 | }; |
| 60 | |
| 61 | struct column_reference: value_expr { |
| 62 | column_reference(prod *p, sqltype *type_constraint = 0); |
| 63 | virtual void out(std::ostream &out) { out << reference; } |
| 64 | std::string reference; |
| 65 | virtual ~column_reference() { } |
| 66 | }; |
| 67 | |
| 68 | struct coalesce : value_expr { |
| 69 | const char *abbrev_; |
nothing calls this directly
no outgoing calls
no test coverage detected