()
| 272 | } |
| 273 | |
| 274 | fn get_test_warehouse() -> String { |
| 275 | std::env::var("PAIMON_TEST_WAREHOUSE") |
| 276 | .unwrap_or_else(|_| "/tmp/paimon-warehouse".to_string()) |
| 277 | } |
| 278 | |
| 279 | fn create_catalog() -> FileSystemCatalog { |
| 280 | let warehouse = get_test_warehouse(); |