Hadrian Reppas

Results 6 comments of Hadrian Reppas

Yeah I like that a bit better. I also updated the Python docs with the new wording.

Hi, I'm taking a look at this issue and had a few questions: 1. What are some situations where schemas are normalized when reading the files? The only `FragmentEvolutionStrategy` I...

I'll give it a shot. Instead of exposing `InspectOptions`, I think it could be better to just add two parameters to `FileSystemDatasetFactory.inspect`: - `promote_options='default'` which can also be set to...

[This](https://github.com/hadrian-reppas/arrow/commit/62c48a1dfa3145bbf75e54dfbce73ea31c021047) commit allows me to write ```python factory = ds.FileSystemDatasetFactory(fs.LocalFileSystem(), [path1, path2], ds.ParquetFileFormat()) schema = factory.inspect("permissive") dataset = factory.finish(schema) table = dataset.to_table() ``` (just like C++ example above) and get...

I'm having trouble writing tests because of the import issue but it's a pretty small change and it worked when I tested it in the REPL. I figured I would...