Minfante377 commented on issue #1020:
URL:
https://github.com/apache/iceberg-python/issues/1020#issuecomment-2274528625
I don't know if it's related or not but when I try to perform a table.scan
with a similar filter I'm getting an odd error too:
```
return self.table.scan(row_filter=In(primary_key,
primary_key_list)).to_pandas()
raise ResolveError(f"Field is required, and could not be found in
the file: {field}")
pyiceberg.exceptions.ResolveError: Field is required, and could not be found
in the file: 1: date_id: required int ([PRIMARY KEY]. date unique identifier.)
```
If I perform a scan without any filter the missing column is clearly there:
```
print(self.table.scan().to_pandas().columns)
Index(['date_id'...],
dtype='object'
```
--
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]