| 219 | } |
| 220 | |
| 221 | std::string FieldReference::toString(bool recursive) const { |
| 222 | std::stringstream out; |
| 223 | if (!inputs_.empty() && recursive) { |
| 224 | appendInputs(out); |
| 225 | out << "."; |
| 226 | } |
| 227 | out << name(); |
| 228 | return out.str(); |
| 229 | } |
| 230 | |
| 231 | std::string FieldReference::toSql( |
| 232 | std::vector<VectorPtr>* complexConstants) const { |
no test coverage detected