murphycrosby opened a new issue, #13760: URL: https://github.com/apache/iceberg/issues/13760
### Apache Iceberg version 1.9.2 (latest release) ### Query engine Other ### Please describe the bug 🐞 In Databricks, running the below gives the error [[TABLE_OR_VIEW_NOT_FOUND](https://learn.microsoft.com/azure/databricks/error-messages/error-classes#table_or_view_not_found)] The table or view `default_iceberg`.`abfss://[email protected]/lakehouse/domain/thing`.`blah` cannot be found. Verify the spelling and correctness of the schema and catalog. If you did not qualify the name with a schema, verify the current_schema() output, or qualify the name with the correct schema and catalog. To tolerate the error on drop use DROP VIEW IF EXISTS or DROP TABLE IF EXISTS. SQLSTATE: 42P01 df = spark.read \ .format("org.apache.iceberg.spark.source.IcebergSource") \ .option("path", "abfss://[email protected]/lakehouse/domain/thing/blah") \ .load() When running: dbutils.fs.ls("abfss://[email protected]/lakehouse/domain/thing/blah") returns the data and metadata folders. [FileInfo(path='abfss://[email protected]/lakehouse/domain/thing/blah/data/', name='data/', size=0, modificationTime=1737552212000), FileInfo(path='abfss://[email protected]/lakehouse/domain/thing/blah/metadata/', name='metadata/', size=0, modificationTime=1737551917000)] ### Willingness to contribute - [x] I can contribute a fix for this bug independently - [x] I would be willing to contribute a fix for this bug with guidance from the Iceberg community - [ ] I cannot contribute a fix for this bug at this time -- 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]
