Commit Graph

108539 Commits

Author SHA1 Message Date
Alexander Gololobov
1b8cae8ee5
Merge pull request #46529 from ClickHouse/regexp_extract
Merge #46469
2023-02-19 10:28:35 +01:00
flynn
7b4fbf33b3 fix 2023-02-19 03:47:14 +00:00
Alexey Milovidov
417158f59f
Merge branch 'master' into lower_upper 2023-02-19 04:05:10 +03:00
Alexey Milovidov
a22f0eee2a
Merge branch 'master' into Aggregate_Sum_AVX512 2023-02-19 04:03:45 +03:00
Alexander Gololobov
f91a127175 Repro for bug found by fuzzer and more similar cases 2023-02-18 23:42:36 +01:00
Azat Khuzhin
0859bbb08b Compress tar archives with zstd in intergration tests
Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
2023-02-18 21:54:38 +01:00
Alexander Gololobov
1480fce688 Removed extra identation 2023-02-18 21:41:30 +01:00
Alexander Gololobov
91b15caa8b Simplify arguments validation 2023-02-18 21:41:18 +01:00
Maksim Kita
7cc10008e3 Fixed build 2023-02-18 20:34:12 +01:00
Alexander Gololobov
0ed0b191f8 Fix for Nullable step filter column 2023-02-18 19:12:32 +01:00
Ilya Yatsishin
92843987ed
Merge pull request #46553 from ClickHouse/fix-strange-whitespaces 2023-02-18 19:04:56 +01:00
flynn
177261a5ac fix typo 2023-02-18 17:34:37 +00:00
flynn
830398f0bd fix build without avro
fix
2023-02-18 17:32:35 +00:00
Alexander Gololobov
dbacc57e4b Test case for Nullable step filter column 2023-02-18 18:31:18 +01:00
Alexander Gololobov
88fb6c3c25 Fix for incorrect combined PREWHERE column 2023-02-18 18:29:16 +01:00
Joanna Hulboj
cae064822c FIXUP: FunctionArrayMapped - Simpler arg passing for check/exec 2023-02-18 17:20:57 +00:00
Maksim Kita
a3ee9b604a Fixed tests 2023-02-18 18:10:10 +01:00
Alexander Gololobov
4b0beb9388 Test case for incorrect combined PREWHERE column 2023-02-18 17:59:12 +01:00
Maksim Kita
cbd961de98 Fixed code review issues 2023-02-18 17:06:00 +01:00
Nikolay Degterinsky
f93aae80b8
Merge pull request #46407 from evillique/parameters-rename-query
Add parameterized RENAME queries
2023-02-18 16:04:55 +01:00
robot-ch-test-poll2
ee063e75f2
Merge pull request #46489 from jus1096/master
Add info for Kafka doc
2023-02-18 15:43:28 +01:00
Alexey Milovidov
f073cd470f
Merge pull request #46478 from ClickHouse/fix_test_store_cleanup
Fix some flaky integration tests
2023-02-18 17:33:02 +03:00
Nikita Taranov
eee39b7bd1 bring back lost lines 2023-02-18 14:30:49 +00:00
Alexey Milovidov
1f1cd1b22c Whitespaces 2023-02-18 15:27:09 +01:00
Nikita Taranov
ef61c22167 another review fixes 2023-02-18 14:26:24 +00:00
Alexey Milovidov
ed4bd2690c
Merge pull request #46545 from DanRoscigno/update-rpm-install-docs
Update install docs with RPM and tgz methods
2023-02-18 17:21:33 +03:00
Alexey Milovidov
d582cb0dcf
Merge pull request #46547 from den-crane/patch-62
Doc. Better example of nested summing
2023-02-18 17:20:57 +03:00
Alexey Milovidov
46e23d7eee
Merge pull request #46552 from azat/state-reset-nothrow
Remove extra try/catch for QueryState/LocalQueryState reset
2023-02-18 17:20:03 +03:00
Alexey Milovidov
325b728bc9
Update wikistat.md 2023-02-18 16:50:14 +03:00
Alexey Milovidov
30921b211b
Update wikistat.md 2023-02-18 16:49:55 +03:00
Nikita Taranov
f70044f34b Merge branch 'master' into aggr_partitions_independently 2023-02-18 13:19:05 +00:00
Joanna Hulboj
c2f5331a2d Revert "FIXUP: Into FunctionArrayMapped: Simplify the dispatch in case of positional params"
This reverts commit d48bdcc754.
2023-02-18 12:54:52 +00:00
Kseniia Sumarokova
b0ea047e76
Merge pull request #46533 from kssenii/fix-disk-setting
Allow `disk` merge tree setting in query to override config merge tree setting `storage_policy`
2023-02-18 12:36:54 +01:00
kssenii
ee7eb8a7dc Fix test 2023-02-18 12:28:55 +01:00
Alexey Milovidov
3ba96590ca
Merge pull request #46546 from ClibMouse/openssl_s390x_fixes
Fixes for OpenSSL and s390x
2023-02-18 14:04:16 +03:00
Alexey Milovidov
bb001078c9
Update sampling-query-profiler.md 2023-02-18 14:01:47 +03:00
Han Fei
19e0b26a7c fix 2023-02-18 11:38:09 +01:00
Mikhail f. Shiryaev
c64c3e3854
Merge pull request #46535 from ClickHouse/autoupdate-keeper-dockerfile
Autoupdate keeper dockerfile
2023-02-18 11:21:29 +01:00
Azat Khuzhin
6f7b6e9206 Remove extra try/catch for QueryState reset
It was possible back when destuctors may throw, in a pre C++11.

I've found one place where it may throw from 2012:

    ~UnionBlockInputStream()
    {
        ...
        if (exception && !std::uncaught_exception())
            exception->rethrow();
        ...
    }

Refs: 8a053aba54
Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
2023-02-18 10:55:15 +01:00
Azat Khuzhin
f9cd66db36 Remove extra try/catch for LocalQueryState reset
Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
2023-02-18 10:55:09 +01:00
Han Fei
b76df1401e enable async-insert-max-query-number only if async_insert_deduplicate is true 2023-02-18 01:08:28 +01:00
Denny Crane
f78efe91f6
Update summingmergetree.md 2023-02-17 18:46:30 -04:00
Kseniia Sumarokova
bda4c94f66
Merge pull request #45384 from ucasfl/iceberg 2023-02-17 23:38:24 +01:00
bkuschel
55e9322612 Fixes for OpenSSL and s390x 2023-02-17 16:20:21 -05:00
Dan Roscigno
16bd07067f
Update docs/en/getting-started/install.md 2023-02-17 16:08:12 -05:00
Igor Nikonov
0bad474fb5
Merge pull request #44176 from ClickHouse/igor/remove_redundant_distinct
Remove redundant DISTINCT
2023-02-17 22:07:03 +01:00
Igor Nikonov
eca2f2866e
Merge pull request #46493 from ClickHouse/fix-crash-with-distinct
Fix constants in the result of MergingSortedAlgorithm.
2023-02-17 22:05:24 +01:00
DanRoscigno
2b6c088eb0 add keeper to tgz list 2023-02-17 16:04:15 -05:00
DanRoscigno
502e240563 update RPM install 2023-02-17 15:55:55 -05:00
kssenii
30748eace8 Fix black check 2023-02-17 21:02:16 +01:00