* bmbuildempty() -- build an empty bitmap index in the initialization fork */
| 164 | * bmbuildempty() -- build an empty bitmap index in the initialization fork |
| 165 | */ |
| 166 | void |
| 167 | bmbuildempty(Relation indexrel) |
| 168 | { |
| 169 | /* initialize meta page and first LOV page for INIT_FORKNUM */ |
| 170 | _bitmap_init(indexrel, true, true); |
| 171 | } |
| 172 | |
| 173 | /* |
| 174 | * bminsert() -- insert an index tuple into a bitmap index. |
nothing calls this directly
no test coverage detected