()
| 579 | |
| 580 | #[tokio::test] |
| 581 | async fn create_object_store_table_http() -> Result<()> { |
| 582 | // Should be OK |
| 583 | let location = "http://example.com/file.parquet"; |
| 584 | let sql = |
| 585 | format!("CREATE EXTERNAL TABLE test STORED AS PARQUET LOCATION '{location}'"); |
| 586 | create_external_table_test(location, &sql).await?; |
| 587 | |
| 588 | Ok(()) |
| 589 | } |
| 590 | #[tokio::test] |
| 591 | async fn copy_to_external_object_store_test() -> Result<()> { |
| 592 | let aws_envs = vec![ |
nothing calls this directly
no test coverage detected
searching dependent graphs…