kevinjqliu commented on issue #599:
URL: https://github.com/apache/parquet-format/issues/599#issuecomment-4984520207

   ## Repros
   
   ### Duckdb
   ```
   ➜ duckdb --version
   
   for file in unknown-logical-type.parquet case-001.parquet; do
     echo "Testing: $file"
     duckdb -c "
       DESCRIBE SELECT * FROM read_parquet('$file');
       SELECT * FROM read_parquet('$file');
     "
   done
   ```
   ```
   v1.5.4 (Variegata) 08e34c447b
   Testing: unknown-logical-type.parquet
   ┌──────────────────────────────────┐
   │             Describe             │
   │                                  │
   │ column with known type   varchar │
   │ column with unknown type blob    │
   └──────────────────────────────────┘
   ┌────────────────────────┬──────────────────────────┐
   │ column with known type │ column with unknown type │
   │        varchar         │           blob           │
   ├────────────────────────┼──────────────────────────┤
   │ known string 1         │ unknown string 1         │
   │ known string 2         │ unknown string 2         │
   │ known string 3         │ unknown string 3         │
   └────────────────────────┴──────────────────────────┘
   Testing: case-001.parquet
   ┌─────────────┐
   │  Describe   │
   │             │
   │ id  integer │
   │ var variant │
   └─────────────┘
   ┌───────┬─────────────────┐
   │  id   │       var       │
   │ int32 │     variant     │
   ├───────┼─────────────────┤
   │     1 │ [comedy, drama] │
   └───────┴─────────────────┘
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to