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

Class from_clause

grammar.hh:104–114  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

102};
103
104struct from_clause : prod {
105 std::vector<shared_ptr<table_ref> > reflist;
106 virtual void out(std::ostream &out);
107 from_clause(prod *p);
108 ~from_clause() { }
109 virtual void accept(prod_visitor *v) {
110 v->visit(this);
111 for (auto p : reflist)
112 p->accept(v);
113 }
114};
115
116struct select_list : prod {
117 std::vector<shared_ptr<value_expr> > value_exprs;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected