(indexCallback)
| 912 | return indexes; |
| 913 | }; |
| 914 | const forEachIndex = (indexCallback) => forEachIndexImpl( |
| 915 | (indexId, slices) => indexCallback( |
| 916 | indexId, |
| 917 | (sliceCallback) => forEachSliceImpl(indexId, sliceCallback, slices) |
| 918 | ) |
| 919 | ); |
| 920 | const forEachSlice = (indexId, sliceCallback) => forEachSliceImpl(indexId, sliceCallback, getIndex(indexId)); |
| 921 | const forEachSliceImpl = (indexId, sliceCallback, slices) => { |
| 922 | const tableId = getTableId(indexId); |
nothing calls this directly
no test coverage detected
searching dependent graphs…