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

Function select_all

datafusion/core/tests/dataframe/mod.rs:347–354  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

345
346#[tokio::test]
347async fn select_all() -> Result<()> {
348 let t = test_table().await?;
349 let plan = t.select([wildcard()])?.logical_plan().clone();
350 let sql_plan = create_plan("SELECT * FROM aggregate_test_100").await?;
351 assert_same_plan(&plan, &sql_plan);
352
353 Ok(())
354}
355
356#[tokio::test]
357async fn select_exprs() -> Result<()> {

Callers

nothing calls this directly

Calls 7

test_tableFunction · 0.85
wildcardFunction · 0.85
assert_same_planFunction · 0.85
create_planFunction · 0.70
cloneMethod · 0.45
logical_planMethod · 0.45
selectMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…