* Like CollectionIdGetIndexes but does not consult index build in progress. */
| 800 | * Like CollectionIdGetIndexes but does not consult index build in progress. |
| 801 | */ |
| 802 | List * |
| 803 | CollectionIdGetValidIndexes(uint64 collectionId, bool excludeIdIndex, |
| 804 | bool enableNestedDistribution) |
| 805 | { |
| 806 | bool includeIndexBuilds = false; |
| 807 | return CollectionIdGetIndexesCore(collectionId, excludeIdIndex, |
| 808 | enableNestedDistribution, includeIndexBuilds); |
| 809 | } |
| 810 | |
| 811 | |
| 812 | /* |
no test coverage detected