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

Function make_and

src/gpre/exp.cpp:978–987  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

976//
977
978static gpre_nod* make_and( gpre_nod* node1, gpre_nod* node2)
979{
980 if (!node1)
981 return node2;
982
983 if (!node2)
984 return NULL;
985
986 return MSC_binary(nod_and, node1, node2);
987}
988
989
990//____________________________________________________________

Callers 2

EXP_rseFunction · 0.85
par_overFunction · 0.85

Calls 1

MSC_binaryFunction · 0.85

Tested by

no test coverage detected