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

Function merge

src/gpre/sqe.cpp:1565–1578  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1563//
1564
1565static gpre_nod* merge( gpre_nod* expr1, gpre_nod* expr2)
1566{
1567
1568 if (!expr1)
1569 return expr2;
1570
1571 if (!expr2)
1572 return expr1;
1573
1574 assert_IS_NOD(expr1);
1575 assert_IS_NOD(expr1);
1576
1577 return MSC_binary(nod_and, expr1, expr2);
1578}
1579
1580
1581//____________________________________________________________

Callers 8

implicit_anyFunction · 0.70
par_andFunction · 0.70
par_notFunction · 0.70
REMOTE_get_configFunction · 0.50
StatusVectorClass · 0.50
~StatusVectorMethod · 0.50
internalServiceAttachMethod · 0.50

Calls 1

MSC_binaryFunction · 0.85

Tested by

no test coverage detected