Skip to content

Commit

Permalink
chore: Bump Rust toolchain
Browse files Browse the repository at this point in the history
  • Loading branch information
MazterQyou committed Dec 8, 2023
1 parent b13189d commit 59ef824
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
strategy:
matrix:
arch: [amd64]
rust: [nightly-2022-03-08]
rust: [nightly-2022-03-22]
container:
image: ${{ matrix.arch }}/rust
env:
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
strategy:
matrix:
arch: [amd64]
rust: [nightly-2022-03-08]
rust: [nightly-2022-03-22]
container:
image: ${{ matrix.arch }}/rust
env:
Expand Down Expand Up @@ -188,7 +188,7 @@ jobs:
strategy:
matrix:
os: [windows-latest, macos-latest]
rust: [nightly-2022-03-08]
rust: [nightly-2022-03-22]
steps:
- uses: actions/checkout@v2
with:
Expand Down Expand Up @@ -216,7 +216,7 @@ jobs:
strategy:
matrix:
arch: [amd64]
rust: [nightly-2022-03-08]
rust: [nightly-2022-03-22]
container:
image: ${{ matrix.arch }}/rust
env:
Expand Down Expand Up @@ -256,7 +256,7 @@ jobs:
strategy:
matrix:
arch: [amd64]
rust: [nightly-2022-03-08]
rust: [nightly-2022-03-22]
container:
image: ${{ matrix.arch }}/rust
env:
Expand Down Expand Up @@ -299,8 +299,8 @@ jobs:
- uses: actions/checkout@v2
- name: Setup toolchain
run: |
rustup toolchain install nightly-2022-03-08
rustup default nightly-2022-03-08
rustup toolchain install nightly-2022-03-22
rustup default nightly-2022-03-22
rustup component add rustfmt
- name: Run
run: cargo fmt --all -- --check
Expand Down Expand Up @@ -446,7 +446,7 @@ jobs:
strategy:
matrix:
arch: [amd64]
rust: [nightly-2022-03-08]
rust: [nightly-2022-03-22]
container:
image: ${{ matrix.arch }}/rust
env:
Expand Down
4 changes: 2 additions & 2 deletions arrow/src/ipc/convert.rs
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ pub(crate) fn build_field<'a>(
/// Get the IPC type of a data type
pub(crate) fn get_fb_field_type<'a>(
data_type: &DataType,
is_nullable: bool,
_is_nullable: bool,
fbb: &mut FlatBufferBuilder<'a>,
) -> FBFieldType<'a> {
// some IPC implementations expect an empty list for child data, instead of a null value.
Expand Down Expand Up @@ -653,7 +653,7 @@ pub(crate) fn get_fb_field_type<'a>(
// In this library, the dictionary "type" is a logical construct. Here we
// pass through to the value type, as we've already captured the index
// type in the DictionaryEncoding metadata in the parent field
get_fb_field_type(value_type, is_nullable, fbb)
get_fb_field_type(value_type, _is_nullable, fbb)
}
Decimal(precision, scale) => {
let mut builder = ipc::DecimalBuilder::new(fbb);
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain
Original file line number Diff line number Diff line change
@@ -1 +1 @@
nightly-2022-03-08
nightly-2022-03-22

0 comments on commit 59ef824

Please sign in to comment.