goldmedal closed issue #15218: Dataframe: select wildcard not working
URL: https://github.com/apache/datafusion/issues/15218
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To
jayzhan211 commented on issue #15218:
URL: https://github.com/apache/datafusion/issues/15218#issuecomment-2724329077
Maybe we need this
```rust
#[derive(Clone, Debug)]
pub enum SelectExpr {
Wildcard(WildcardOptions),
QualifiedWildcard(TableReference, WildcardOptions
jayzhan211 opened a new issue, #15218:
URL: https://github.com/apache/datafusion/issues/15218
### Describe the bug
```rust
#[tokio::test]
async fn select_all() -> Result<()> {
// build plan using `select_expr``
let t = test_table().await?;
let df = t