| 1221 | |
| 1222 | |
| 1223 | static void |
| 1224 | UpdatePostgresIndex(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 | |
| 1240 | static void |
no test coverage detected