Dumitru Husleag created PARQUET-1956:
----------------------------------------
Summary: "parquet-tools cat -j" should not output metadata
Key: PARQUET-1956
URL: https://issues.apache.org/jira/browse/PARQUET-1956
Project: Parquet
Issue Type: Bug
Components: parquet-mr
Affects Versions: 1.11.1
Reporter: Dumitru Husleag
Let's say I have a structure like this in a Parquet file:
{code:json}
{
"account":
[
{
"accountDepositType": "NA",
"accountNumber": "NA",
"accountHolderType": "NA"
}
]
}
{code}
it is extracted like this
{code:json}
{
"account": {
"list": [
{
"element": {
"accountDepositType": "NA",
"accountNumber": "NA",
"accountHolderType": "NA"
}
}
]
}
}
{code}
*"list"* and *"element"* is metadata or type information if you like and it
should not appear in output.
Can you please fix that ?
--
This message was sent by Atlassian Jira
(v8.3.4#803005)