-
Notifications
You must be signed in to change notification settings - Fork 988
Open
Labels
0 - BacklogIn queue waiting for assignmentIn queue waiting for assignmentPythonAffects Python cuDF API.Affects Python cuDF API.bugSomething isn't workingSomething isn't workingcuIOcuIO issuecuIO issuelibcudfAffects libcudf (C++/CUDA) code.Affects libcudf (C++/CUDA) code.
Milestone
Description
If you have a schema that contains a list-of-struct, selecting a subset of the inner columns doesn't work. Example
list<struct<int, float>>
If the schema for this column was
A (list)
B (struct)
C (int)
D (float)
Attempting to select "A.B.C" would not work. I believe this is being caused by some schema preprocessing that we are doing that is injecting fake schema elements to ease schema interpretation. Essentially we see a schema that looks like this:
A (list)
list (the fake element
B (struct)
C (int)
D (float)
So "A.B.C" doesn't actually exist, only "A.list.B.C" and the code returns 0 columns.
Metadata
Metadata
Assignees
Labels
0 - BacklogIn queue waiting for assignmentIn queue waiting for assignmentPythonAffects Python cuDF API.Affects Python cuDF API.bugSomething isn't workingSomething isn't workingcuIOcuIO issuecuIO issuelibcudfAffects libcudf (C++/CUDA) code.Affects libcudf (C++/CUDA) code.
Type
Projects
Status
To be revisited
Status
Todo