-
Notifications
You must be signed in to change notification settings - Fork 821
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update references from master
to main
#6795
Conversation
@@ -19,8 +19,6 @@ | |||
|
|||
# Native Rust implementation of Apache Arrow and Apache Parquet | |||
|
|||
[![Coverage Status](https://codecov.io/gh/apache/arrow-rs/rust/branch/master/graph/badge.svg)](https://codecov.io/gh/apache/arrow-rs?branch=master) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We don't run the coverage job anymore, so let's not feature an out of date result prominently:
@@ -138,7 +138,7 @@ cargo test | |||
cargo test -p arrow | |||
``` | |||
|
|||
For some changes, you may want to run additional tests. You can find up-to-date information on the current CI tests in [.github/workflows](https://github.com/apache/arrow-rs/tree/master/.github/workflows). Here are some examples of additional tests you may want to run: | |||
For some changes, you may want to run additional tests. You can find up-to-date information on the current CI tests in [.github/workflows](https://github.com/apache/arrow-rs/tree/main/.github/workflows). Here are some examples of additional tests you may want to run: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The old (master
) urls still work too, but I think it is cleaner to simply update them all
@@ -45,7 +45,7 @@ async fn main() -> Result<()> { | |||
builder = builder.with_projection(mask); | |||
|
|||
// Highlight: set `RowFilter`, it'll push down filter predicates to skip IO and decode. | |||
// For more specific usage: please refer to https://github.com/apache/arrow-datafusion/blob/master/datafusion/core/src/physical_plan/file_format/parquet/row_filter.rs. | |||
// For more specific usage: please refer to https://github.com/apache/datafusion/blob/main/datafusion/core/src/datasource/physical_plan/parquet/row_filter.rs. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
code moved, so I updated the link
master
to main
master
to main
Co-authored-by: Matthijs Brobbel <[email protected]>
Which issue does this PR close?
Rationale for this change
As @tustvold noticed, there are still some references to the
master
branch which we also need to migrate tomain
What changes are included in this PR?
Change all references I could find from
master
tomain
Are there any user-facing changes?