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

Function copy_key

src/jrd/btr.cpp:3366–3382  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3364
3365
3366static void copy_key(const temporary_key* in, temporary_key* out)
3367{
3368/**************************************
3369 *
3370 * c o p y _ k e y
3371 *
3372 **************************************
3373 *
3374 * Functional description
3375 * Copy a key.
3376 *
3377 **************************************/
3378
3379 out->key_length = in->key_length;
3380 out->key_flags = in->key_flags;
3381 memcpy(out->key_data, in->key_data, in->key_length);
3382}
3383
3384
3385static contents delete_node(thread_db* tdbb, WIN* window, UCHAR* pointer)

Callers 3

makeKeysMethod · 0.70
BTR_make_boundsFunction · 0.70
fast_loadFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected