MCPcopy Create free account
hub / github.com/documentdb/documentdb / UpdatePostgresIndexWithOverride

Function UpdatePostgresIndexWithOverride

pg_documentdb/src/api_hooks.c:604–617  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

602
603
604void
605UpdatePostgresIndexWithOverride(uint64_t collectionId, int indexId, int operation, bool
606 value,
607 void (*default_update)(uint64_t, int, int, bool))
608{
609 if (update_postgres_index_hook != NULL)
610 {
611 update_postgres_index_hook(collectionId, indexId, operation, value);
612 }
613 else
614 {
615 default_update(collectionId, indexId, operation, value);
616 }
617}
618
619
620const char *

Callers 1

UpdatePostgresIndexFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected