(Class<T> c)
| 145 | } |
| 146 | |
| 147 | public <T> void dropTable(Class<T> c) throws Exception { |
| 148 | if (c == Packet.class) { |
| 149 | |
| 150 | dropPacketTableFaster(); |
| 151 | } else { |
| 152 | |
| 153 | TableUtils.dropTable(source, c, true); |
| 154 | } |
| 155 | } |
| 156 | |
| 157 | private static void migrateTableWithoutHistory(Path srcDBPath, Path dstDBPath) { |
| 158 | try { |
no test coverage detected