| 602 | |
| 603 | |
| 604 | void |
| 605 | UpdatePostgresIndexWithOverride(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 | |
| 620 | const char * |
no outgoing calls
no test coverage detected