Commit Graph

127848 Commits

Author SHA1 Message Date
robot-clickhouse
1a3ed942ba Update version_date.tsv and changelogs after v23.8.6.16-lts 2023-11-08 15:37:08 +00:00
jsc0218
52cc334788
Merge pull request #56433 from DarkWanderer/updated-examples
Added GRANT examples to user.xml/yml
2023-11-08 09:53:30 -05:00
Alexander Tokmakov
32567e16e7
Merge pull request #56429 from ClickHouse/tavplubix-patch-9
Fix `test_attach_without_fetching`
2023-11-08 14:37:15 +01:00
Mikhail f. Shiryaev
1e981120c1
Merge pull request #56422 from ClickHouse/speed-up-autoscaling
Make autoscaling more responsive
2023-11-08 12:47:22 +01:00
alesapin
4a097cd373
Merge pull request #55216 from vitlibar/backup-use-two-more-thread-pools
Use more thread pools in BACKUP/RESTORE to avoid its hanging in tests
2023-11-08 12:18:10 +01:00
Sema Checherinda
2ffd51fb36
Merge pull request #56421 from CheSema/move-to-server-settings
move storage_metadata_write_full_object_key setting to the server scope
2023-11-08 11:06:39 +01:00
Robert Schulze
2cf2c6bbd8
Merge pull request #56425 from slvrtrn/information-schema-statistics
Add `information_schema.statistics` system view
2023-11-08 10:29:18 +01:00
Robert Schulze
b896f9f470
Merge pull request #56416 from rschu1ze/arrayRandomSample-improved
Revert "Revert "Add function arrayRandomSample()""
2023-11-08 10:27:41 +01:00
Antonio Andelic
788c66027c
Merge pull request #56104 from incfly/keeper-az
Add /keeper/availability-zone node to allow server load balancing within AZ.
2023-11-08 09:46:24 +01:00
Vitaly Baranov
da5f48e44a Use map instead of array. 2023-11-08 08:45:50 +01:00
Alexey Milovidov
980ab94e8d
Merge pull request #56434 from ClickHouse/t64-overflow
Fix buffer overflow in T64
2023-11-08 05:50:43 +01:00
Alexey Milovidov
3a4ada3898 Fix buffer overflow in T64 2023-11-08 03:27:44 +01:00
Oleg V. Kozlyuk
e341d8cea3
Add example to users.xml 2023-11-08 03:01:42 +03:00
Oleg V. Kozlyuk
0e52328795
Updated users.yml example 2023-11-08 02:59:54 +03:00
Robert Schulze
66800a334f
Fix darwin build 2023-11-07 19:44:23 +00:00
vdimir
e8e3d4d310
Merge pull request #56380 from ClickHouse/vdimir/filter_pushdown_crash
Fix crash in filterPushDown
2023-11-07 19:46:20 +01:00
Alexander Tokmakov
fc1bd0efd5
Update test.py 2023-11-07 19:44:16 +01:00
slvrtrn
1068478591 Update docs formatting 2023-11-07 19:18:59 +01:00
slvrtrn
94143ac002 Add information_schema.statistics docs 2023-11-07 19:14:44 +01:00
slvrtrn
f663228404 Add information_schema.statistics 2023-11-07 18:59:45 +01:00
Alexander Tokmakov
8fb594dd5e
Merge pull request #56388 from ClickHouse/tavplubix-patch-10
Update stress.py
2023-11-07 18:58:25 +01:00
Mikhail f. Shiryaev
4df3a7cc8b
Make autoscaling more responsive 2023-11-07 17:49:22 +01:00
Mikhail f. Shiryaev
b981a94bc7
Merge pull request #56305 from ClickHouse/digests
Implement digest helpers for different objects
2023-11-07 17:46:29 +01:00
Sema Checherinda
8216a24abe move storage_metadata_write_full_object_key setting to the server scope 2023-11-07 17:14:46 +01:00
Kseniia Sumarokova
cc3144ea2d
Merge pull request #56370 from ClickHouse/kssenii-patch-6
Update test_storage_s3_queue/test.py
2023-11-07 16:29:34 +01:00
Kseniia Sumarokova
d436414ec6
Merge pull request #56376 from ClickHouse/disable-s3-queue-test-for-ordered-mode
Update test_storage_s3_queue
2023-11-07 16:27:52 +01:00
Robert Schulze
fe5dc14ac7
Fix style 2023-11-07 15:27:41 +00:00
Robert Schulze
d8e8abc029
Fix build 2023-11-07 15:26:43 +00:00
Robert Schulze
86b8ebf71c
Merge remote-tracking branch 'rschu1ze/master' into arrayRandomSample-improved 2023-11-07 15:25:29 +00:00
Robert Schulze
4db2e25ca2
Merge pull request #56375 from rschu1ze/idatatype-convenience-functions
Cleanup convenience functions in IDataType
2023-11-07 16:23:45 +01:00
Robert Schulze
32a3b1b049
Merge remote-tracking branch 'rschu1ze/master' into idatatype-convenience-functions 2023-11-07 15:17:59 +00:00
Alexander Tokmakov
945fbb3211
Merge pull request #56397 from den-crane/test/on_cluster_positional_arguments
test on cluster positional_arguments
2023-11-07 14:08:32 +01:00
Robert Schulze
3ca00fcdd5
Fix a bug that non-const array inputs would not work
CREATE TABLE tab (col Array(String)) ENGINE = MergeTree ORDER BY col;
INSERT INTO tab VALUES (['a', 'b', 'c']) (['d', 'e']) (['f', 'g', 'h']);
SELECT arrayRandomSample(col, 2) FROM tab;

Previous result:
['a', 'c']
['a', 'c']
['a', 'c']

Now:
['b', 'c']
['e', 'd']
['f', 'h']
2023-11-07 12:26:59 +00:00
Robert Schulze
e09f5961b1
Don't catch exceptions (loses the original stack) 2023-11-07 12:07:17 +00:00
Robert Schulze
7223d49b20
Cosmetics 2023-11-07 12:07:17 +00:00
Alexander Tokmakov
706f2dcf54
Add a metric for suspicious parts in ZooKeeper (#56395) 2023-11-07 12:55:57 +01:00
Sema Checherinda
02df5ac59c
Merge pull request #54340 from KevinyhZou/bug_fix_csv_parse_crlf
Fix CSV read while the end of line is CR(\r)
2023-11-07 12:51:05 +01:00
Nikolai Kochetov
bc0c71f689
Merge pull request #56315 from ClickHouse/eazy-analyzer-tests-fix-2
Fix more tests with analyzer.
2023-11-07 12:45:03 +01:00
Nikita Mikhaylov
0555f8a68c
Fix crash in case of adding a column with type Object(JSON) (#56307) 2023-11-07 12:01:52 +01:00
vdimir
8c083924e1
Use format null in 02907_filter_pushdown_crash 2023-11-07 10:27:39 +00:00
Robert Schulze
842cc36598
Update docs 2023-11-07 10:25:27 +00:00
Robert Schulze
54b5d573d7
Merge remote-tracking branch 'rschu1ze/master' into idatatype-convenience-functions 2023-11-07 10:18:30 +00:00
Robert Schulze
e22c673299
Revert "Revert "Add function arrayRandomSample()""
This reverts commit e47e50e30d.
2023-11-07 10:16:13 +00:00
Antonio Andelic
eb0e4a0aa5
Merge pull request #56354 from chhetripradeep/pchhetri/yield-leadership-keeper
Add 4-letter command for yielding/resigning leadership
2023-11-07 11:14:09 +01:00
vdimir
43bf718318
Fix crash in filterPushDown 2023-11-07 09:44:14 +00:00
vdimir
0437b5777a
Merge pull request #54068 from ClickHouse/vdimir/join_on_nullsafe_analyzer
Analyzer support 'is not distinct from' in join on section
2023-11-07 10:39:56 +01:00
vdimir
2de73d3456
Merge pull request #56394 from ClickHouse/vdimir/check_doc_file
Option to check particular file with utils/check-style/check-doc-aspell
2023-11-07 10:34:16 +01:00
Antonio Andelic
f06d3b29be
Merge pull request #56360 from ClickHouse/add-logs-in-decompressor
Print info while decompressing the binary
2023-11-07 09:36:29 +01:00
Denny Crane
dbbf6bb2c3
Update 02006_test_positional_arguments_on_cluster.sql 2023-11-07 02:24:53 -04:00
Pradeep Chhetri
4e8ff997c0 fix 2023-11-07 14:20:40 +08:00