mkleen commented on code in PR #20047: URL: https://github.com/apache/datafusion/pull/20047#discussion_r2808087200
########## datafusion/sqllogictest/test_files/parquet_sorted_statistics.slt: ########## @@ -177,6 +177,10 @@ physical_plan statement ok DROP TABLE test_table; +# Disable file statistics cache because file statistics have been previously created +statement ok +set datafusion.runtime.file_statistics_cache_limit = "0K"; + Review Comment: I think i found the issue. The cache is now session-scoped and the entry is not removed when the table is dropped and recreated with the same files. -- 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]
