Get the SQL statements from the specified query file
(query: usize)
| 140 | |
| 141 | /// Get the SQL statements from the specified query file |
| 142 | pub fn get_query_sql(query: usize) -> Result<Vec<String>> { |
| 143 | get_query_sql_for_scale_factor(query, 1.0) |
| 144 | } |
| 145 | |
| 146 | /// Get the SQL statements from the specified query file using the provided scale factor for |
| 147 | /// TPC-H substitutions such as Q11 FRACTION. |
no test coverage detected
searching dependent graphs…