()
| 28 | int tableId; |
| 29 | |
| 30 | @Before public void setUp() throws Exception { |
| 31 | super.setUp(); |
| 32 | this.tuples = new ArrayList<>(); |
| 33 | this.f = SystemTestUtil.createRandomHeapFile(10, 10200, 32, null, tuples); |
| 34 | |
| 35 | this.tableName = SystemTestUtil.getUUID(); |
| 36 | Database.getCatalog().addTable(f, tableName); |
| 37 | this.tableId = Database.getCatalog().getTableId(tableName); |
| 38 | } |
| 39 | |
| 40 | private double[] getRandomTableScanCosts(int[] pageNums, int[] ioCosts) throws IOException { |
| 41 | double[] ret = new double[ioCosts.length]; |
nothing calls this directly
no test coverage detected