| 31 | } |
| 32 | |
| 33 | table_or_query_name::table_or_query_name(prod *p) : table_ref(p) { |
| 34 | t = random_pick(scope->tables); |
| 35 | refs.push_back(make_shared<aliased_relation>(scope->stmt_uid("ref"), t)); |
| 36 | } |
| 37 | |
| 38 | void table_or_query_name::out(std::ostream &out) { |
| 39 | out << t->ident() << " as " << refs[0]->ident(); |
nothing calls this directly
no test coverage detected