MCPcopy Create free account
hub / github.com/apache/datafusion / create_external_table_local_file

Function create_external_table_local_file

datafusion-cli/src/exec.rs:742–751  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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<()> {

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…