Skip to content

Commit 6c7f791

Browse files
authored
Merge branch 'ClickHouse:master' into opt_concat_blocks
2 parents 6ba9dd0 + c81bec3 commit 6c7f791

File tree

89 files changed

+1252
-627
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

89 files changed

+1252
-627
lines changed

CHANGELOG.md

Lines changed: 190 additions & 0 deletions
Large diffs are not rendered by default.

ci/jobs/scripts/check_style/aspell-ignore/en/aspell-dict.txt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
personal_ws-1.1 en 3238
1+
personal_ws-1.1 en 3238
22
AArch
33
ACLs
44
ALTERs
@@ -1850,7 +1850,6 @@ formatter
18501850
formatters
18511851
fqdn
18521852
frac
1853-
freezed
18541853
frictionless
18551854
fromDaysSinceYearZero
18561855
fromModifiedJulianDay
@@ -1961,6 +1960,7 @@ grpcio
19611960
gtest
19621961
gtid
19631962
gzip
1963+
gunzip
19641964
gzipped
19651965
hadoop
19661966
halfMD
@@ -2345,6 +2345,8 @@ namespace
23452345
namespaces
23462346
natively
23472347
nats
2348+
ncat
2349+
netcat
23482350
ness
23492351
nestjs
23502352
netloc

ci/jobs/scripts/check_style/check_cpp.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -327,8 +327,8 @@ find $ROOT_PATH/{src,base,programs,utils} -name '*.h' -or -name '*.cpp' |
327327
echo "If an exception has LOGICAL_ERROR code, there is no need to include the text 'Logical error' in the exception message, because then the phrase 'Logical error' will be printed twice."
328328

329329
PATTERN="allow_";
330-
DIFF=$(comm -3 <(grep -o "\b$PATTERN\w*\b" $ROOT_PATH/src/Core/Settings.cpp | sort -u) <(grep -o -h "\b$PATTERN\w*\b" $ROOT_PATH/src/Databases/enableAllExperimentalSettings.cpp $ROOT_PATH/utils/check-style/experimental_settings_ignore.txt | sort -u));
331-
[ -n "$DIFF" ] && echo "$DIFF" && echo "^^ Detected 'allow_*' settings that might need to be included in src/Databases/enableAllExperimentalSettings.cpp" && echo "Alternatively, consider adding an exception to utils/check-style/experimental_settings_ignore.txt"
330+
DIFF=$(comm -3 <(grep -o "\b$PATTERN\w*\b" $ROOT_PATH/src/Core/Settings.cpp | sort -u) <(grep -o -h "\b$PATTERN\w*\b" $ROOT_PATH/src/Databases/enableAllExperimentalSettings.cpp $ROOT_PATH/ci/jobs/scripts/check_style/experimental_settings_ignore.txt | sort -u));
331+
[ -n "$DIFF" ] && echo "$DIFF" && echo "^^ Detected 'allow_*' settings that might need to be included in src/Databases/enableAllExperimentalSettings.cpp" && echo "Alternatively, consider adding an exception to ci/jobs/scripts/check_style/experimental_settings_ignore.txt"
332332

333333
# Don't allow the direct inclusion of magic_enum.hpp and instead point to base/EnumReflection.h
334334
find $ROOT_PATH/{src,base,programs,utils} -name '*.cpp' -or -name '*.h' | xargs grep -l "magic_enum.hpp" | grep -v EnumReflection.h | while read -r line;

ci/jobs/scripts/check_style/check_typos.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ ROOT_PATH="."
77
#FIXME: check all (or almost all) repo
88
codespell \
99
--skip "*generated*,*gperf*,*.bin,*.mrk*,*.idx,checksums.txt,*.dat,*.pyc,*.kate-swp,*obfuscateQueries.cpp,d3-*.js,*.min.js,*.sum,${ROOT_PATH}/utils/check-style/aspell-ignore" \
10-
--ignore-words "${ROOT_PATH}/utils/check-style/codespell-ignore-words.list" \
11-
--exclude-file "${ROOT_PATH}/utils/check-style/codespell-ignore-lines.list" \
10+
--ignore-words "${ROOT_PATH}/ci/jobs/scripts/check_style/codespell-ignore-words.list" \
11+
--exclude-file "${ROOT_PATH}/ci/jobs/scripts/check_style/codespell-ignore-lines.list" \
1212
--quiet-level 2 \
1313
"$ROOT_PATH"/{src,base,programs,utils} \
1414
$@ | grep -P '.' \

docs/en/interfaces/http.md

Lines changed: 267 additions & 128 deletions
Large diffs are not rendered by default.

docs/en/sql-reference/aggregate-functions/reference/corr.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ corr(x, y)
2626

2727
**Arguments**
2828

29-
- `x` — first variable. [(U)Int*](../../data-types/int-uint.md), [Float*](../../data-types/float.md), [Decimal](../../data-types/decimal.md).
30-
- `y` — second variable. [(U)Int*](../../data-types/int-uint.md), [Float*](../../data-types/float.md), [Decimal](../../data-types/decimal.md).
29+
- `x` — first variable. [(U)Int*](../../data-types/int-uint.md), [Float*](../../data-types/float.md).
30+
- `y` — second variable. [(U)Int*](../../data-types/int-uint.md), [Float*](../../data-types/float.md).
3131

3232
**Returned Value**
3333

docs/en/sql-reference/statements/alter/partition.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ For more information about backups and restoring data, see the [Data Backup](/op
233233
ALTER TABLE table_name [ON CLUSTER cluster] UNFREEZE [PARTITION 'part_expr'] WITH NAME 'backup_name'
234234
```
235235

236-
Removes `freezed` partitions with the specified name from the disk. If the `PARTITION` clause is omitted, the query removes the backup of all partitions at once.
236+
Removes `frozen` partitions with the specified name from the disk. If the `PARTITION` clause is omitted, the query removes the backup of all partitions at once.
237237

238238
## CLEAR INDEX IN PARTITION {#clear-index-in-partition}
239239

0 commit comments

Comments
 (0)