| 60 | }; |
| 61 | |
| 62 | struct join_cond : prod { |
| 63 | static shared_ptr<join_cond> factory(prod *p, table_ref &lhs, table_ref &rhs); |
| 64 | join_cond(prod *p, table_ref &lhs, table_ref &rhs) |
| 65 | : prod(p) { (void) lhs; (void) rhs;} |
| 66 | }; |
| 67 | |
| 68 | struct simple_join_cond : join_cond { |
| 69 | std::string condition; |
nothing calls this directly
no outgoing calls
no test coverage detected