-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Closed
Labels
enhancementNew feature or requestNew feature or request
Description
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
Currently, df does not implement qualified_wildcard, e.g. "select a.* from a", and I would like to contribute this patch.
Describe the solution you'd like
Support the following sql:
select a.*, b.id from a, b;
select a_alias.*, b.id from a as a_alias, b;
I have some idea about it:
- add qualifier field for Expr::Wildcard, like
Wildcard{ relation: Option<String/Vec<String>> } - expand these wildcard with schema of the relation when creating select exprs
Any suggestions!
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request