leonidmakarovsky opened a new issue, #1177:
URL: https://github.com/apache/iceberg-python/issues/1177
### Apache Iceberg version
0.7.1 (latest release)
### Please describe the bug 🐞
I have a table with column business_time_hour (all lower case). If I
capitalize one character, to_pandas() (and to_arrow()) fails. My code is
snippet is:
from pyiceberg import catalog
cat = catalog.load_catalog()
table = cat.load_table('namespace' + '.' + 'table')
scan = table.scan(row_filter = "business_time_**H**our = '2024-09-15
05:00:00'", case_sensitive = **False**)
# The above line passes
df = scan.to_pandas()
# The above line fails with the following message
ValueError: Could not find field with name business_time_Hour,
case_sensitive=True
--
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]