This is an automated email from the ASF dual-hosted git repository.

weijun pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/datafusion.git


The following commit(s) were added to refs/heads/main by this push:
     new 72db63c38d chore: check the error message log (#17308)
72db63c38d is described below

commit 72db63c38dd2a23658ab45ec7171168a3348ccb5
Author: Cancai Cai <77189278+caican...@users.noreply.github.com>
AuthorDate: Sun Aug 24 18:32:32 2025 +0800

    chore: check the error message log (#17308)
---
 datafusion/core/tests/catalog/memory.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/datafusion/core/tests/catalog/memory.rs 
b/datafusion/core/tests/catalog/memory.rs
index b0753eb5c9..fd3c2aeb7a 100644
--- a/datafusion/core/tests/catalog/memory.rs
+++ b/datafusion/core/tests/catalog/memory.rs
@@ -109,7 +109,7 @@ async fn test_mem_provider() {
     assert!(provider.table_exist(table_name));
     let other_table = EmptyTable::new(Arc::new(Schema::empty()));
     let result = provider.register_table(table_name.to_string(), 
Arc::new(other_table));
-    assert!(result.is_err());
+    assert!(result.is_err(), "The table test_table_exist already exists");
 }
 
 #[tokio::test]


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

Reply via email to