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

yuxia pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/fluss-rust.git


The following commit(s) were added to refs/heads/main by this push:
     new e4813e2  chore: fix ci (#69)
e4813e2 is described below

commit e4813e21c9e341e322eaa7c874c4c229ebc11810
Author: yuxia Luo <[email protected]>
AuthorDate: Sun Nov 30 00:27:38 2025 +0800

    chore: fix ci (#69)
---
 crates/fluss/src/metadata/datatype.rs | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/crates/fluss/src/metadata/datatype.rs 
b/crates/fluss/src/metadata/datatype.rs
index c7f9326..4deed2b 100644
--- a/crates/fluss/src/metadata/datatype.rs
+++ b/crates/fluss/src/metadata/datatype.rs
@@ -1200,8 +1200,7 @@ fn test_map_display() {
     let map_type = MapType::new(DataTypes::string(), DataTypes::int());
     assert_eq!(map_type.to_string(), "MAP<STRING, INT>");
 
-    let map_type_non_null =
-        MapType::with_nullable(false, DataTypes::int(), DataTypes::string());
+    let map_type_non_null = MapType::with_nullable(false, DataTypes::int(), 
DataTypes::string());
     assert_eq!(map_type_non_null.to_string(), "MAP<INT, STRING> NOT NULL");
 
     let nested_map = MapType::new(

Reply via email to