(String tableName, int delta)
| 67 | public abstract List<LoaderThread> createLoaderThreads() throws SQLException; |
| 68 | |
| 69 | public void addToTableCount(String tableName, int delta) { |
| 70 | this.tableSizes.put(tableName, delta); |
| 71 | } |
| 72 | |
| 73 | public Histogram<String> getTableCounts() { |
| 74 | return (this.tableSizes); |
no test coverage detected