-
Notifications
You must be signed in to change notification settings - Fork 915
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[FEA] Remove column_names
from table_metadata
#6411
Comments
@devavret this seems related to schema changes |
Thanks for pointing to the issue. I observed this but didn't know its already filed. |
This issue has been labeled |
still relevant |
From some work in the JSON reader, it looks like we can remove |
No concerns from my side, SGTM 👍 |
column_names
from table_metadata
…11972) contributes to #6411 `write_csv` takes a pointer to `table_metadata` but only uses the column names. This PR changes the API to directly take column names. This also aligns with `read_csv`. Authors: - Vukasin Milovanovic (https://github.com/vuule) Approvers: - GALI PREM SAGAR (https://github.com/galipremsagar) - Matthew Roeschke (https://github.com/mroeschke) - Nghia Truong (https://github.com/ttnghia) - Yunsong Wang (https://github.com/PointKernel) URL: #11972
Closes #6411 Removed `column_names` in favor of `schema_info`. Authors: - Vukasin Milovanovic (https://github.com/vuule) Approvers: - GALI PREM SAGAR (https://github.com/galipremsagar) - Elias Stehle (https://github.com/elstehle) - Karthikeyan (https://github.com/karthikeyann) - Bradley Dice (https://github.com/bdice) - Matthew Roeschke (https://github.com/mroeschke) URL: #12578
This PR (#6318) adds a new field to the
table_metadata
struct,schema_info
, which contains the column names for the entire hierarchy of returned columns, not just the root columns.This is semi-redundant with the existing
column_names
but we decided to avoid breaking any existing external dependencies that usecolumn_names
for 0.16.We should decide if they should be folded together (likely,
column_names
would just use the new data structure)The text was updated successfully, but these errors were encountered: