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

Function MOV_compare

src/jrd/mov.cpp:46–62  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

44using namespace Firebird;
45
46int MOV_compare(Jrd::thread_db* tdbb, const dsc* arg1, const dsc* arg2)
47{
48/**************************************
49 *
50 * M O V _ c o m p a r e
51 *
52 **************************************
53 *
54 * Functional description
55 * Compare two descriptors. Return (-1, 0, 1) if a<b, a=b, or a>b.
56 *
57 **************************************/
58 fb_assert(!(arg1->dsc_flags & DSC_null));
59 fb_assert(!(arg2->dsc_flags & DSC_null));
60
61 return CVT2_compare(arg1, arg2, tdbb->getAttachment()->att_dec_status);
62}
63
64
65double MOV_date_to_double(const dsc* desc)

Callers 15

compareMethod · 0.85
executeMethod · 0.85
sameAsMethod · 0.85
aggPassMethod · 0.85
executeMethod · 0.85
EXT_getFunction · 0.85
EXE_assignmentFunction · 0.85
evlMaxMinValueFunction · 0.85
VIO_modifyFunction · 0.85
check_classFunction · 0.85
check_nullify_sourceFunction · 0.85
check_ownerFunction · 0.85

Calls 2

CVT2_compareFunction · 0.85
getAttachmentMethod · 0.45

Tested by

no test coverage detected