Robert Schulze
93d8fc231c
Try to fix invocation from outside
2023-11-09 11:39:50 +00:00
Robert Schulze
fe397a3110
Parallelize with xargs
2023-11-09 10:17:49 +00:00
Robert Schulze
fa470b16e5
Parallel clone sparse/shallow submodules
...
(buzzword overload in the title, sorry)
Script update-submodules.sh does a sparse and shallow checkout of
submodules. It is offered as convenience for developers who want to
avoid long checkout times and save disk space. The script is called by a
few build jobs in CI to check that it doesn't break. This PR
parallelizes the actual checkout which reduces script runtime from 425
sec to 258 sec.
2023-11-08 20:02:40 +00: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
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
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
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
b981a94bc7
Merge pull request #56305 from ClickHouse/digests
...
Implement digest helpers for different objects
2023-11-07 17:46:29 +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
Pradeep Chhetri
201a7b8d5f
fix
2023-11-07 14:06:55 +08:00
Pradeep Chhetri
0aaaf320b6
Update document of keeper-client to let CI run
2023-11-07 13:58:45 +08:00
Pradeep Chhetri
6c5b60b12d
Empty commit
2023-11-07 13:58:45 +08:00
Pradeep Chhetri
74b53218b8
Rename yield_leader with yield_leadship and its variants
2023-11-07 13:58:45 +08:00
Pradeep Chhetri
361472b29e
Add 4-letter command for yielding/resigning leadership
2023-11-07 13:58:45 +08:00
Jianfei Hu
033bb19198
Merge branch 'master' of https://github.com/ClickHouse/ClickHouse into keeper-az
2023-11-07 02:50:54 +00:00
Jianfei Hu
b552bf6928
fix the test node count.
...
Signed-off-by: Jianfei Hu <hujianfei258@gmail.com>
2023-11-07 02:50:46 +00:00
kevinyhzou
d1743e08f7
ci fix
2023-11-07 09:45:46 +08:00
robot-ch-test-poll1
845a235ad8
Merge pull request #56237 from ClickHouse/justindeguzman-patch-1
...
[Docs] Specify IAM role necessary for GCS table function
2023-11-07 01:20:06 +01:00