Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions rust/parquet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ build = "build.rs"
edition = "2018"

[dependencies]
parquet-format = "2.6.1"
parquet-format = "~2.6.1"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: can we add a comment here for future reference? I think this is not the first time we got this error.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@sunchao @alamb @mqy given the long CI times, is it okay if we piggy-back on #9133 to add the comment?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sure. SGTM.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes for sure

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The update note was added to 8cf807f

byteorder = "1"
thrift = "0.13"
snap = { version = "1.0", optional = true }
Expand All @@ -40,7 +40,7 @@ zstd = { version = "0.6", optional = true }
chrono = "0.4"
num-bigint = "0.3"
arrow = { path = "../arrow", version = "3.0.0-SNAPSHOT", optional = true }
base64 = { version = "*", optional = true }
base64 = { version = "0.12", optional = true }

[dev-dependencies]
rand = "0.8"
Expand Down