MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / par_joined_relation

Function par_joined_relation

src/gpre/sqe.cpp:2075–2090  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2073//
2074
2075static gpre_ctx* par_joined_relation( gpre_req* request)
2076{
2077 gpre_ctx* context1;
2078
2079 assert_IS_REQ(request);
2080
2081 if (MSC_match(KW_LEFT_PAREN))
2082 {
2083 context1 = par_joined_relation(request);
2084 EXP_match_paren();
2085 }
2086 else if (!(context1 = SQE_context(request)))
2087 return NULL;
2088
2089 return par_join_clause(request, context1);
2090}
2091
2092
2093//____________________________________________________________

Callers 2

par_join_clauseFunction · 0.85
par_rseFunction · 0.85

Calls 4

MSC_matchFunction · 0.85
EXP_match_parenFunction · 0.85
SQE_contextFunction · 0.85
par_join_clauseFunction · 0.85

Tested by

no test coverage detected