paleolimbot opened a new issue, #186:
URL: https://github.com/apache/sedona-db/issues/186
Reprex:
```python
import pyarrow as pa
import sedona.db
sd = sedona.db.connect()
def batches():
for i in range(10):
yield pa.record_batch({"a":["a", "b", "c"], "b": [1, 2, 3]})
reader = pa.RecordBatchReader.from_batches(next(batches()).schema, batches())
sd.create_data_frame(reader).to_view("foofy", overwrite=True)
sd.sql("SELECT b as banana FROM foofy").show()
#> SedonaError: Input field name a does not match with the projection
expression b.
```
--
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]