(&self)
| 92 | const TABLES: [&'static str; 1] = ["lineitem"]; |
| 93 | |
| 94 | fn queries_dir(&self) -> PathBuf { |
| 95 | self.queries_path |
| 96 | .clone() |
| 97 | .unwrap_or_else(|| PathBuf::from(SORT_PUSHDOWN_QUERY_DIR)) |
| 98 | } |
| 99 | |
| 100 | fn load_query(&self, query_id: usize) -> Result<String> { |
| 101 | let path = self.queries_dir().join(format!("q{query_id}.sql")); |
no test coverage detected