| 126 | }; |
| 127 | |
| 128 | class column_ref_expr |
| 129 | { |
| 130 | public: |
| 131 | column_ref_expr(std::string name, std::string table) |
| 132 | : name(std::move(name)) |
| 133 | , table(std::move(table)) |
| 134 | { |
| 135 | } |
| 136 | |
| 137 | const std::string& get_name() const |
| 138 | { |
| 139 | return name; |
| 140 | } |
| 141 | |
| 142 | const std::string& get_table() const |
| 143 | { |
| 144 | return table; |
| 145 | } |
| 146 | |
| 147 | std::string to_string() const; |
| 148 | |
| 149 | private: |
| 150 | std::string name; |
| 151 | std::string table; |
| 152 | }; |
| 153 | |
| 154 | class function_ref_expr |
| 155 | { |