senyosimpson commented on issue #14281:
URL: https://github.com/apache/datafusion/issues/14281#issuecomment-2613786689
> Have you tried using the `parquet_metadata` function on the file to see if
it returns anything? For example:
>
> datafusion-cli --command "select * from
parquet_metadata('go-parquet-writer/go-testfile.parquet')"
That seems to works fine
```
ยป datafusion-cli --command "select path_in_schema, stats_min, stats_max from
parquet_metadata('go-parquet-writer/go-testfile.parquet')"
DataFusion CLI v44.0.0
+-----------------+---------------+---------------+
| path_in_schema | stats_min | stats_max |
+-----------------+---------------+---------------+
| "city" | Athens | Madrid |
| "country" | Greece | Spain |
| "age" | 10 | 32 |
| "scale" | -1 | 1 |
| "status" | 12 | 20 |
| "time_captured" | 1737781788268 | 1737785388268 |
| "checked" | false | true |
+-----------------+---------------+---------------+
7 row(s) fetched.
Elapsed 0.003 seconds.
```
> Hey, I'm the one who mentioned this in discord ๐ what I meant is that we
disabled `datafusion.execution.parquet.enable_page_index` at query time, not
that we skipped generating the page index when generating the parquet file.
Ah right, that makes sense. Thanks for the help on getting that to work,
that's super helpful!
--
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]