| 1918 | |
| 1919 | |
| 1920 | void |
| 1921 | ExplainRegularIndexScan(IndexScanDesc scan, struct ExplainState *es) |
| 1922 | { |
| 1923 | if (IsBsonRegularIndexAm(scan->indexRelation->rd_rel->relam)) |
| 1924 | { |
| 1925 | /* See if there's a hook to explain more in this index */ |
| 1926 | ExplainWriterFuncs writerFuncs = GetForExplain(); |
| 1927 | TryExplainByIndexAm(scan, &writerFuncs, es); |
| 1928 | } |
| 1929 | } |
| 1930 | |
| 1931 | |
| 1932 | void |
no test coverage detected