You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have a number of optimization rules that deal with column names represented by strings.
In order to support qualified field names in queries we need to update these rules to work with a data structure representing optionally qualified column names instead.
Note: migrated from original JIRA: https://issues.apache.org/jira/browse/ARROW-10894
We have a number of optimization rules that deal with column names represented by strings.
In order to support qualified field names in queries we need to update these rules to work with a data structure representing optionally qualified column names instead.
Suggested data structure:
{code:java}
struct ColumnName {
qualifier: Option,
name: String
} {code}
The text was updated successfully, but these errors were encountered: