Skip to content

Commit

Permalink
Merge branch 'apache:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
gruuya authored Dec 9, 2024
2 parents dbe5858 + 994ca96 commit 1a76e1c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .asf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ github:
required_approving_review_count: 1

required_linear_history: true

del_branch_on_merge: true
features:
wiki: false
issues: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_typos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,4 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Check typos
uses: crate-ci/typos@v1.27.3
uses: crate-ci/typos@v1.28.2
6 changes: 3 additions & 3 deletions crates/iceberg/src/transform/truncate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -712,11 +712,11 @@ mod test {
);

// test decimal
let mut buidler = PrimitiveBuilder::<Decimal128Type>::new()
let mut builder = PrimitiveBuilder::<Decimal128Type>::new()
.with_precision_and_scale(20, 2)
.unwrap();
buidler.append_value(1065);
let input = Arc::new(buidler.finish());
builder.append_value(1065);
let input = Arc::new(builder.finish());
let res = super::Truncate::new(50).transform(input).unwrap();
assert_eq!(
res.as_any()
Expand Down

0 comments on commit 1a76e1c

Please sign in to comment.