forked from ClickHouse/ClickHouse
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from liuneng1994/local_engine_with_columnar_shu…
…ffle_no_rebase Merge ClickHouse 22.3
- Loading branch information
Showing
11,427 changed files
with
492,243 additions
and
187,352 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
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
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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
contrib/* linguist-vendored | ||
*.h linguist-language=C++ | ||
# to avoid frequent conflicts | ||
tests/queries/0_stateless/arcadia_skip_list.txt text merge=union | ||
tests/queries/0_stateless/data_json/* binary |
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 |
---|---|---|
@@ -1,3 +1 @@ | ||
docs/* @ClickHouse/docs | ||
docs/zh/* @ClickHouse/docs-zh | ||
website/* @ClickHouse/docs | ||
|
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 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
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,50 @@ | ||
--- | ||
name: Bug report | ||
about: Wrong behaviour (visible to users) in official ClickHouse release. | ||
title: '' | ||
labels: 'potential bug' | ||
assignees: '' | ||
|
||
--- | ||
|
||
> You have to provide the following information whenever possible. | ||
**Describe what's wrong** | ||
|
||
> A clear and concise description of what works not as it is supposed to. | ||
**Does it reproduce on recent release?** | ||
|
||
[The list of releases](https://github.com/ClickHouse/ClickHouse/blob/master/utils/list-versions/version_date.tsv) | ||
|
||
**Enable crash reporting** | ||
|
||
> If possible, change "enabled" to true in "send_crash_reports" section in `config.xml`: | ||
``` | ||
<send_crash_reports> | ||
<!-- Changing <enabled> to true allows sending crash reports to --> | ||
<!-- the ClickHouse core developers team via Sentry https://sentry.io --> | ||
<enabled>false</enabled> | ||
``` | ||
|
||
**How to reproduce** | ||
|
||
* Which ClickHouse server version to use | ||
* Which interface to use, if matters | ||
* Non-default settings, if any | ||
* `CREATE TABLE` statements for all tables involved | ||
* Sample data for all these tables, use [clickhouse-obfuscator](https://github.com/ClickHouse/ClickHouse/blob/master/programs/obfuscator/Obfuscator.cpp#L42-L80) if necessary | ||
* Queries to run that lead to unexpected result | ||
|
||
**Expected behavior** | ||
|
||
> A clear and concise description of what you expected to happen. | ||
**Error message and/or stacktrace** | ||
|
||
> If applicable, add screenshots to help explain your problem. | ||
**Additional context** | ||
|
||
> Add any other context about the problem here. |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
self-hosted-runner: | ||
labels: | ||
- builder | ||
- func-tester | ||
- func-tester-aarch64 | ||
- fuzzer-unit-tester | ||
- stress-tester | ||
- style-checker | ||
- style-checker-aarch64 |
This file was deleted.
Oops, something went wrong.
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,43 @@ | ||
name: CherryPick | ||
|
||
env: | ||
# Force the stdout and stderr streams to be unbuffered | ||
PYTHONUNBUFFERED: 1 | ||
|
||
concurrency: | ||
group: cherry-pick | ||
on: # yamllint disable-line rule:truthy | ||
schedule: | ||
- cron: '0 */3 * * *' | ||
jobs: | ||
CherryPick: | ||
runs-on: [self-hosted, style-checker] | ||
steps: | ||
- name: Set envs | ||
# https://docs.github.com/en/actions/learn-github-actions/workflow-commands-for-github-actions#multiline-strings | ||
run: | | ||
cat >> "$GITHUB_ENV" << 'EOF' | ||
TEMP_PATH=${{runner.temp}}/cherry_pick | ||
ROBOT_CLICKHOUSE_SSH_KEY<<RCSK | ||
${{secrets.ROBOT_CLICKHOUSE_SSH_KEY}} | ||
RCSK | ||
REPO_OWNER=ClickHouse | ||
REPO_NAME=ClickHouse | ||
REPO_TEAM=core | ||
EOF | ||
- name: Check out repository code | ||
uses: actions/checkout@v2 | ||
with: | ||
token: ${{secrets.ROBOT_CLICKHOUSE_COMMIT_TOKEN}} | ||
fetch-depth: 0 | ||
- name: Cherry pick | ||
run: | | ||
sudo pip install GitPython | ||
cd "$GITHUB_WORKSPACE/tests/ci" | ||
python3 cherry_pick.py | ||
- name: Cleanup | ||
if: always() | ||
run: | | ||
docker kill "$(docker ps -q)" ||: | ||
docker rm -f "$(docker ps -a -q)" ||: | ||
sudo rm -fr "$TEMP_PATH" |
Oops, something went wrong.