Skip to content

Commit

Permalink
fix: Fix build break in main branch (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
liurenjie1024 authored Aug 15, 2023
1 parent 5ab3334 commit f9f0d3d
Showing 1 changed file with 20 additions and 10 deletions.
30 changes: 20 additions & 10 deletions crates/iceberg/src/spec/transform.rs
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,8 @@ mod tests {
1,
"a",
Primitive(Timestamp),
)])),
)
.into()])),
None,
),
],
Expand Down Expand Up @@ -460,7 +461,8 @@ mod tests {
1,
"a",
Primitive(Timestamp),
)])),
)
.into()])),
None,
),
],
Expand Down Expand Up @@ -511,7 +513,8 @@ mod tests {
1,
"a",
Primitive(Timestamp),
)])),
)
.into()])),
None,
),
],
Expand Down Expand Up @@ -560,7 +563,8 @@ mod tests {
1,
"a",
Primitive(Timestamp),
)])),
)
.into()])),
None,
),
],
Expand Down Expand Up @@ -609,7 +613,8 @@ mod tests {
1,
"a",
Primitive(Timestamp),
)])),
)
.into()])),
None,
),
],
Expand Down Expand Up @@ -658,7 +663,8 @@ mod tests {
1,
"a",
Primitive(Timestamp),
)])),
)
.into()])),
None,
),
],
Expand Down Expand Up @@ -707,7 +713,8 @@ mod tests {
1,
"a",
Primitive(Timestamp),
)])),
)
.into()])),
None,
),
],
Expand Down Expand Up @@ -759,12 +766,14 @@ mod tests {
1,
"a",
Primitive(Timestamp),
)])),
)
.into()])),
Some(Struct(StructType::new(vec![NestedField::optional(
1,
"a",
Primitive(Timestamp),
)]))),
)
.into()]))),
),
],
};
Expand Down Expand Up @@ -813,7 +822,8 @@ mod tests {
1,
"a",
Primitive(Timestamp),
)])),
)
.into()])),
Some(Primitive(StringType)),
),
],
Expand Down

0 comments on commit f9f0d3d

Please sign in to comment.