MCPcopy Create free account
hub / github.com/anse1/sqlsmith / expr_join_cond

Class expr_join_cond

grammar.hh:74–83  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

72};
73
74struct expr_join_cond : join_cond {
75 struct scope joinscope;
76 shared_ptr<bool_expr> search;
77 expr_join_cond(prod *p, table_ref &lhs, table_ref &rhs);
78 virtual void out(std::ostream &out);
79 virtual void accept(prod_visitor *v) {
80 search->accept(v);
81 v->visit(this);
82 }
83};
84
85struct joined_table : table_ref {
86 virtual void out(std::ostream &out);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected