Commit Graph

119908 Commits

Author SHA1 Message Date
Rory Crispin
7ad399cc6d
Rephrase ALL supported note
I interpreted the note as 'ALL' is only supported before 23.4 
I think this reordering makes it clearer
2023-07-19 14:25:36 +01:00
Mikhail f. Shiryaev
9c4005b33f
Add logging about all found workflows for merge_pr.py 2023-07-19 15:12:58 +02:00
Kruglov Pavel
c4d881c027
Merge pull request #52219 from Avogar/fix-race-in-multiplexed-connections
Fix data race in Connection::setAsyncCallback on unknown packet from server
2023-07-19 15:01:53 +02:00
Robert Schulze
bdaf82922a
Use formatAST() 2023-07-19 12:56:15 +00:00
Robert Schulze
3eb23d899f
Merge remote-tracking branch 'rschu1ze/master' into beautify-system-query-cache 2023-07-19 12:55:09 +00:00
Kruglov Pavel
f0026af189
Revert "Revert "Improve CSVInputFormat to check and set default value to column if deserialize failed"" 2023-07-19 14:51:11 +02:00
Kruglov Pavel
012df7a3fc
Merge pull request #52322 from ClickHouse/revert-51716-bug_fix_csv_field_type_not_match
Revert "Improve CSVInputFormat to check and set default value to column if deserialize failed"
2023-07-19 14:50:56 +02:00
Kruglov Pavel
7b3564f96a
Revert "Improve CSVInputFormat to check and set default value to column if deserialize failed" 2023-07-19 14:44:59 +02:00
Antonio Andelic
0c86df519f Fix unspported disks in Keeper 2023-07-19 12:41:25 +00:00
robot-ch-test-poll4
63d0616a22
Merge pull request #51716 from KevinyhZou/bug_fix_csv_field_type_not_match
Improve CSVInputFormat to check and set default value to column if deserialize failed
2023-07-19 14:41:05 +02:00
Kruglov Pavel
06e366d7fb
Merge branch 'master' into fix-race-in-multiplexed-connections 2023-07-19 14:35:01 +02:00
Nikita Mikhaylov
ce36bf42cf
Merge pull request #52241 from Avogar/refactor-async-task-executor
Attempt to fix assert in tsan with fibers
2023-07-19 14:24:20 +02:00
Kseniia Sumarokova
3bbc9e59c3
Merge pull request #49557 from kssenii/fix-assertions-4
Cleanup `storage_conf.xml`
2023-07-19 14:14:42 +02:00
kevinyhzou
cc9da46efa ci fix 2023-07-19 20:11:03 +08:00
kevinyhzou
dcf7ba2534 remove unuseful code 2023-07-19 19:36:19 +08:00
Song Liyong
7837559dbf MaterializedMySQL: Support CREATE TABLE AS SELECT 2023-07-19 13:33:02 +02:00
kevinyhzou
94796f28ad ci fix 2023-07-19 19:24:16 +08:00
Amos Bird
2ebbbf0000
Also need to fix aggregate projections 2023-07-19 19:13:45 +08:00
alesapin
d52473e882
Merge pull request #52279 from ClickHouse/fix-02497_trace_events_stress_long
Fix `02497_trace_events_stress_long`
2023-07-19 12:50:11 +02:00
alesapin
4c68225590
Merge branch 'master' into fix-02497_trace_events_stress_long 2023-07-19 12:44:56 +02:00
Alexander Sapin
af6361e2a0 Fix 02725_memory-for-merges 2023-07-19 12:35:52 +02:00
Azat Khuzhin
380b4ffe2b Reduce dependencies for skim by avoid using default features
By default skim requires cli -> clap -> termcolor -> winapi-util

Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
2023-07-19 12:29:39 +02:00
kevinyhzou
95424177d5 review fix 2023-07-19 18:26:54 +08:00
Alexander Gololobov
d3663c356f Wait fo KILL MUTATION to finish 2023-07-19 12:11:57 +02:00
alesapin
16d8631e01
Merge branch 'master' into try_without_mmap 2023-07-19 12:01:39 +02:00
alesapin
0b27ac15f7
Merge pull request #52202 from ClickHouse/fix_flaky_test_lost_part
Fix flaky test test_lost_part
2023-07-19 12:00:47 +02:00
alesapin
3776ca7822
Merge pull request #52221 from ClickHouse/fix_test_producing_no_such_key
Fix flaky test `01076_parallel_alter_replicated_zookeeper`
2023-07-19 12:00:42 +02:00
alesapin
08022f474b
Merge branch 'master' into fix_flaky_test_lost_part 2023-07-19 12:00:07 +02:00
alesapin
f8fa79c30f
Merge branch 'master' into fix_test_producing_no_such_key 2023-07-19 11:59:23 +02:00
Robert Schulze
f22452c78c
Beautify pretty-printing of the query string in SYSTEM.QUERY_CACHE.
Output of SYSTEM.QUERY_CACHE

- before this PR:

    SELECT * FROM system.query_cache

    Query id: 4989008b-b84c-4e57-bfe5-7fb551814812

    Row 1:
    ──────
    query:   	   SELECT 1 SETTINGS
    [...]

- after this PR:

    SELECT * FROM system.query_cache

    Query id: 4989008b-b84c-4e57-bfe5-7fb551814812

    Row 1:
    ──────
    query:   	   SELECT 1 SETTINGS use_query_cache = 1
    [...]
2023-07-19 09:10:26 +00:00
vdimir
92f04d2c53
Merge pull request #52209 from mkmkme/mkmkme/first-line 2023-07-19 11:10:13 +02:00
Alexander Tokmakov
d051a2a128
Merge pull request #52208 from valbok/parse-ddl
MaterializedMySQL: Add tests to parse db and table names from DDL
2023-07-19 11:59:24 +03:00
Val Doroshchuk
fadce28da5
Merge branch 'master' into mysql-types 2023-07-19 10:53:33 +02:00
Salvatore Mesoraca
96f048f7f8
Convert output UInt128 to FixedString even if input is empty 2023-07-19 10:49:33 +02:00
robot-clickhouse
70543e8ef9 Automatic style fix 2023-07-19 08:47:53 +00:00
Ilya Golshtein
c8347bd313 test_for_basic_auth_registry: some comments removed per code review 2023-07-19 08:32:45 +00:00
Ilya Golshtein
9f6ab5e816 test_for_basic_auth_registry - made black formatter happy 2023-07-19 08:32:45 +00:00
Ilya Golshtein
f1ce1da007 test_for_basic_auth_registry - new test and cleanup per code review 2023-07-19 08:32:45 +00:00
Ilya Golshtein
4259176f24 test_for_basic_auth_registry - original zk configuration restored 2023-07-19 08:32:45 +00:00
Ilya Golshtein
aa2b7e248d test_for_basic_auth_registry - fix port in test_kafka_formats 2023-07-19 08:32:45 +00:00
Ilya Golshtein
c550a532e6 test_for_basic_auth_registry - black formatter happy + some doc 2023-07-19 08:32:45 +00:00
Ilya Golshtein
c1c5ffa309 test_for_basic_auth_registry - cpp code small improvement 2023-07-19 08:32:45 +00:00
Ilya Golshtein
83569688cb test_for_basic_auth_registry - UnknownTopicOrPartitionException 2023-07-19 08:32:45 +00:00
Ilya Golshtein
66581d091a test_for_basic_auth_registry - both tests works, simplifications 2023-07-19 08:32:45 +00:00
Ilya Golshtein
db8e96147a test_for_basic_auth_registry - started, but only auth test works 2023-07-19 08:32:45 +00:00
Ilya Golshtein
fb3a860d7f test_for_basic_auth_registry - one kafka instance again 2023-07-19 08:32:45 +00:00
Ilya Golshtein
e3523cb1a4 test_for_basic_auth_registry - attempt to have two kafka instances 2023-07-19 08:32:45 +00:00
dheerajathrey
8e1de7897a indentation fix 2023-07-19 08:32:44 +00:00
dheerajathrey
1564eace38 enable url-encoded basic auth to fetch avro schema in kafka 2023-07-19 08:32:44 +00:00
Ilya Golshtein
8b0fc82834 test_for_basic_auth_registry - mock up 2023-07-19 08:32:44 +00:00