| 1690 | } // namespace |
| 1691 | |
| 1692 | std::string Expr::toString(bool recursive) const { |
| 1693 | if (recursive) { |
| 1694 | std::stringstream out; |
| 1695 | out << name_; |
| 1696 | appendInputs(out); |
| 1697 | return out.str(); |
| 1698 | } |
| 1699 | |
| 1700 | return name_; |
| 1701 | } |
| 1702 | |
| 1703 | std::string Expr::toSql(std::vector<VectorPtr>* complexConstants) const { |
| 1704 | std::stringstream out; |
no test coverage detected