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

Function UpdatePostgresIndex

pg_documentdb/src/commands/coll_mod.c:1223–1237  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1221
1222
1223static void
1224UpdatePostgresIndex(uint64_t collectionId, int indexId, int operation, bool value)
1225{
1226 if (ForceUpdateIndexInline)
1227 {
1228 bool ignoreMissingShards = false;
1229 UpdatePostgresIndexCore(collectionId, indexId, operation, value,
1230 ignoreMissingShards);
1231 }
1232 else
1233 {
1234 UpdatePostgresIndexWithOverride(collectionId, indexId, operation, value,
1235 UpdatePostgresIndexOverride);
1236 }
1237}
1238
1239
1240static void

Callers 2

HandleUniqueConversionFunction · 0.85

Calls 2

UpdatePostgresIndexCoreFunction · 0.85

Tested by

no test coverage detected