| 89 | table_subquery::~table_subquery() { } |
| 90 | |
| 91 | void table_subquery::accept(prod_visitor *v) { |
| 92 | query->accept(v); |
| 93 | v->visit(this); |
| 94 | } |
| 95 | |
| 96 | shared_ptr<join_cond> join_cond::factory(prod *p, table_ref &lhs, table_ref &rhs) |
| 97 | { |
no test coverage detected