()
| 740 | |
| 741 | #[tokio::test] |
| 742 | async fn create_external_table_local_file() -> Result<()> { |
| 743 | let location = "path/to/file.parquet"; |
| 744 | |
| 745 | // Ensure that local files are also registered |
| 746 | let sql = |
| 747 | format!("CREATE EXTERNAL TABLE test STORED AS PARQUET LOCATION '{location}'"); |
| 748 | create_external_table_test(location, &sql).await.unwrap(); |
| 749 | |
| 750 | Ok(()) |
| 751 | } |
| 752 | |
| 753 | #[tokio::test] |
| 754 | async fn create_external_table_format_option() -> Result<()> { |
nothing calls this directly
no test coverage detected
searching dependent graphs…