()
| 673 | |
| 674 | #[test] |
| 675 | fn test_get_store_hdfs() { |
| 676 | let sut = DefaultObjectStoreRegistry::default(); |
| 677 | let url = Url::parse("hdfs://localhost:8020").unwrap(); |
| 678 | sut.register_store(&url, Arc::new(LocalFileSystem::new())); |
| 679 | let url = ListingTableUrl::parse("hdfs://localhost:8020/key").unwrap(); |
| 680 | sut.get_store(url.as_ref()).unwrap(); |
| 681 | } |
| 682 | |
| 683 | #[test] |
| 684 | fn test_get_store_s3() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…