Drops the specified index. @param type index type @param data data reference @throws IOException I/O exception
(final IndexType type, final Data data)
| 66 | * @throws IOException I/O exception |
| 67 | */ |
| 68 | static void drop(final IndexType type, final Data data) throws IOException { |
| 69 | data.meta.dirty = true; |
| 70 | data.meta.index(type, false); |
| 71 | data.dropIndex(type); |
| 72 | } |
| 73 | } |