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: issues-unsubscr...@iceberg.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org

Reply via email to