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

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


The following commit(s) were added to refs/heads/main by this push:
     new f9f0d3d  fix: Fix build break in main branch (#30)
f9f0d3d is described below

commit f9f0d3d7b65536ee2b61fafa7b366a8ed5b0c873
Author: Renjie Liu <[email protected]>
AuthorDate: Tue Aug 15 14:39:49 2023 +0800

    fix: Fix build break in main branch (#30)
---
 crates/iceberg/src/spec/transform.rs | 30 ++++++++++++++++++++----------
 1 file changed, 20 insertions(+), 10 deletions(-)

diff --git a/crates/iceberg/src/spec/transform.rs 
b/crates/iceberg/src/spec/transform.rs
index ff478a6..b66e059 100644
--- a/crates/iceberg/src/spec/transform.rs
+++ b/crates/iceberg/src/spec/transform.rs
@@ -409,7 +409,8 @@ mod tests {
                         1,
                         "a",
                         Primitive(Timestamp),
-                    )])),
+                    )
+                    .into()])),
                     None,
                 ),
             ],
@@ -460,7 +461,8 @@ mod tests {
                         1,
                         "a",
                         Primitive(Timestamp),
-                    )])),
+                    )
+                    .into()])),
                     None,
                 ),
             ],
@@ -511,7 +513,8 @@ mod tests {
                         1,
                         "a",
                         Primitive(Timestamp),
-                    )])),
+                    )
+                    .into()])),
                     None,
                 ),
             ],
@@ -560,7 +563,8 @@ mod tests {
                         1,
                         "a",
                         Primitive(Timestamp),
-                    )])),
+                    )
+                    .into()])),
                     None,
                 ),
             ],
@@ -609,7 +613,8 @@ mod tests {
                         1,
                         "a",
                         Primitive(Timestamp),
-                    )])),
+                    )
+                    .into()])),
                     None,
                 ),
             ],
@@ -658,7 +663,8 @@ mod tests {
                         1,
                         "a",
                         Primitive(Timestamp),
-                    )])),
+                    )
+                    .into()])),
                     None,
                 ),
             ],
@@ -707,7 +713,8 @@ mod tests {
                         1,
                         "a",
                         Primitive(Timestamp),
-                    )])),
+                    )
+                    .into()])),
                     None,
                 ),
             ],
@@ -759,12 +766,14 @@ mod tests {
                         1,
                         "a",
                         Primitive(Timestamp),
-                    )])),
+                    )
+                    .into()])),
                     Some(Struct(StructType::new(vec![NestedField::optional(
                         1,
                         "a",
                         Primitive(Timestamp),
-                    )]))),
+                    )
+                    .into()]))),
                 ),
             ],
         };
@@ -813,7 +822,8 @@ mod tests {
                         1,
                         "a",
                         Primitive(Timestamp),
-                    )])),
+                    )
+                    .into()])),
                     Some(Primitive(StringType)),
                 ),
             ],

Reply via email to