forked from apache/arrow
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/main' into apachegh-43683-pand…
…as-string-dtype
- Loading branch information
Showing
1,602 changed files
with
5,341 additions
and
261,976 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,7 +25,6 @@ github: | |
- js8544 | ||
- laurentgo | ||
- vibhatha | ||
- zanmato1984 | ||
- ZhangHuiGui | ||
|
||
notifications: | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
# Licensed to the Apache Software Foundation (ASF) under one | ||
# or more contributor license agreements. See the NOTICE file | ||
# distributed with this work for additional information | ||
# regarding copyright ownership. The ASF licenses this file | ||
# to you under the Apache License, Version 2.0 (the | ||
# "License"); you may not use this file except in compliance | ||
# with the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, | ||
# software distributed under the License is distributed on an | ||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
# KIND, either express or implied. See the License for the | ||
# specific language governing permissions and limitations | ||
# under the License. | ||
|
||
# This is an EditorConfig file: https://editorconfig.org/ | ||
|
||
# This is the top-most config for this project | ||
root = true | ||
|
||
# General settings | ||
|
||
[*] | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
charset = utf-8 | ||
spelling_language = en | ||
|
||
# Language-specific settings, in approximate alphabetical order | ||
|
||
[*.{c,cc,cpp,h,hh,hpp}] | ||
indent_size = 2 | ||
indent_style = space | ||
|
||
[*.cmake] | ||
indent_size = 2 | ||
indent_style = space | ||
|
||
[CMakeLists.txt] | ||
indent_size = 2 | ||
indent_style = space | ||
|
||
[*.cs] | ||
indent_size = 4 | ||
indent_style = space | ||
|
||
[*.{fbs,proto,thrift}] | ||
indent_size = 2 | ||
indent_style = space | ||
|
||
[*.go] | ||
indent_size = 8 | ||
indent_style = tab | ||
tab_width = 8 | ||
|
||
[*.{js,ts}] | ||
indent_size = 4 | ||
indent_style = space | ||
|
||
[*.{py,pyx,pxd,pxi}] | ||
indent_size = 4 | ||
indent_style = space | ||
|
||
[*.r] | ||
indent_size = 2 | ||
indent_style = space | ||
|
||
[*.rb] | ||
indent_size = 2 | ||
indent_style = space | ||
|
||
[*.rst] | ||
indent_size = 3 | ||
indent_style = space | ||
|
||
[*.sh] | ||
indent_size = 2 | ||
indent_style = space | ||
|
||
[*.vala] | ||
indent_size = 4 | ||
indent_style = space | ||
|
||
[*.{yml,yaml}] | ||
indent_size = 2 | ||
indent_style = space |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,7 +46,6 @@ | |
|
||
# Docs | ||
# /docs/ | ||
# .readthedocs.yml | ||
# *.md | ||
# *.rmd | ||
# *.rst | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,8 +45,8 @@ issues][3] for the Apache Arrow project. Comment on the issue and/or contact | |
[[email protected]](https://lists.apache.org/[email protected]) | ||
with your questions and ideas. | ||
|
||
If you’d like to report a bug but don’t have time to fix it, you can still post | ||
it on JIRA, or email the mailing list | ||
If you’d like to report a bug but don’t have time to fix it, you can still create | ||
a GitHub issue, or email the mailing list | ||
[[email protected]](https://lists.apache.org/[email protected]) | ||
|
||
To contribute a patch: | ||
|
@@ -57,8 +57,8 @@ harder to merge in a large change with a lot of disjoint features. | |
GitHub](https://github.com/apache/arrow/issues). | ||
3. Submit the patch as a GitHub pull request against the main branch. For a | ||
tutorial, see the GitHub guides on [forking a repo](https://help.github.com/en/articles/fork-a-repo) | ||
and [sending a pull request](https://help.github.com/en/articles/creating-a-pull-request-from-a-fork). So that your pull request syncs with the JIRA issue, prefix your pull request | ||
name with the JIRA issue id (ex: [ARROW-767: [C++] Filesystem abstraction](https://github.com/apache/arrow/pull/4225)) | ||
and [sending a pull request](https://help.github.com/en/articles/creating-a-pull-request-from-a-fork). Prefix your pull request | ||
name with the GitHub issue id (ex: [GH-767: [C++] Filesystem abstraction](https://github.com/apache/arrow/pull/4225)) | ||
4. Make sure that your code passes the unit tests. You can find instructions | ||
how to run the unit tests for each Arrow component in its respective README | ||
file. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -251,6 +251,11 @@ jobs: | |
submodules: recursive | ||
- name: Install Dependencies | ||
run: | | ||
# pkg-config formula is deprecated but it's still installed | ||
# in GitHub Actions runner now. We can remove this once | ||
# pkg-config formula is removed from GitHub Actions runner. | ||
brew uninstall pkg-config || : | ||
brew uninstall [email protected] || : | ||
brew bundle --file=cpp/Brewfile | ||
- name: Install MinIO | ||
run: | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.