(suffix: &str)
| 482 | } |
| 483 | |
| 484 | fn test_spill_dir(suffix: &str) -> std::path::PathBuf { |
| 485 | let mut p = std::env::temp_dir(); |
| 486 | p.push(format!( |
| 487 | "nodedb_columnar_agg_test_{suffix}_{}", |
| 488 | std::process::id() |
| 489 | )); |
| 490 | p |
| 491 | } |
| 492 | |
| 493 | #[test] |
| 494 | fn group_by_symbol_column() { |
no test coverage detected