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

Function par_and

src/gpre/sqe.cpp:1961–1971  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1959//
1960
1961static gpre_nod* par_and( gpre_req* request, USHORT* paren_count)
1962{
1963 assert_IS_REQ(request);
1964
1965 gpre_nod* expr1 = par_not(request, paren_count);
1966
1967 if (!MSC_match(KW_AND))
1968 return expr1;
1969
1970 return merge(expr1, par_and(request, paren_count));
1971}
1972
1973
1974//____________________________________________________________

Callers 1

SQE_booleanFunction · 0.70

Calls 3

MSC_matchFunction · 0.85
par_notFunction · 0.70
mergeFunction · 0.70

Tested by

no test coverage detected