paleolimbot commented on code in PR #560:
URL: https://github.com/apache/sedona-db/pull/560#discussion_r2754989199
##########
python/sedonadb/python/sedonadb/context.py:
##########
@@ -151,7 +198,9 @@ def read_parquet(
return DataFrame(
self._impl,
- self._impl.read_parquet([str(path) for path in table_paths],
options),
+ self._impl.read_parquet(
+ [str(path) for path in table_paths], options, geometry_columns
Review Comment:
```suggestion
[str(path) for path in table_paths], options,
json.dumps(geometry_columns)
```
##########
python/sedonadb/python/sedonadb/context.py:
##########
@@ -151,7 +198,9 @@ def read_parquet(
return DataFrame(
self._impl,
- self._impl.read_parquet([str(path) for path in table_paths],
options),
+ self._impl.read_parquet(
+ [str(path) for path in table_paths], options, geometry_columns
Review Comment:
```suggestion
[str(path) for path in table_paths], options,
json.dumps(geometry_columns)
```
--
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]