toddfarmer / arrow-migration

0 stars 1 forks source link

C++: Add cast from Dictionary to plain arrays #1447

Closed toddfarmer closed 7 years ago

toddfarmer commented 7 years ago

Note: This issue was originally created as ARROW-1513. Please see the migration documentation for further details.

Original Issue Description:

Cast dictionary arrays to the plain representation.

toddfarmer commented 7 years ago

Note: Comment by Wes McKinney (wesm): This might be most easily implemented by using Take, i.e. Take(ctx, dictionary, indices, &out), which we ought to implement soon.

toddfarmer commented 7 years ago

Note: Comment by Uwe Korn (uwe): We can implement this soon using Take but I'm taking a shot at this currently to get the functionality in parquet-cpp and to understand the new compute library.

toddfarmer commented 7 years ago

Note: Comment by Wes McKinney (wesm): Issue resolved by pull request 1086 https://github.com/apache/arrow/pull/1086