@param table_id_ the table index @param key_column_num the number of columns which are not join attribute @param join_column_num the number of column @param record the number of records of the table
(int table_id_, int key_column_num, int join_column_num, int record, String condition_t)
| 45 | * @param record the number of records of the table |
| 46 | */ |
| 47 | public Setup_JXTp(int table_id_, int key_column_num, int join_column_num, int record, String condition_t){ |
| 48 | table_id = table_id_; |
| 49 | key_column = key_column_num; |
| 50 | join_column = join_column_num; |
| 51 | record_num = record; |
| 52 | condition = condition_t; |
| 53 | } |
| 54 | |
| 55 | public void construct() { |
| 56 | //Step 1 read the dataset from the tables |
nothing calls this directly
no outgoing calls
no test coverage detected