vdelbaen commented on issue #5549: URL: https://github.com/apache/arrow-rs/issues/5549#issuecomment-2036373598
Thank you for creating this issue. With Delta-RS, I can't read a delta table containing decimals in scientific notation. Example: ```python table_url = 'abfss://[email protected]/path/to/delta/table' dt = dl.DeltaTable(table_url, storage_options={"bearer_token": AZ_TOKEN}) ``` I get the following error: ``` File [c:\///.venv/Lib/site-packages/deltalake/table.py:401), in DeltaTable.__init__(self, table_uri, version, storage_options, without_files, log_buffer_size) (...) 398 399 """ 400 self._storage_options = storage_options --> 401 self._table = RawDeltaTable( 402 str(table_uri), 403 version=version, 404 storage_options=storage_options, 405 without_files=without_files, 406 log_buffer_size=log_buffer_size, 407 ) Exception: Parser error: can't parse the string value 0E-8 to decimal ``` -- 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]
