Maksim Kita
3a22d8ef2c
CompressedWriteBuffer added comment
2022-05-23 12:09:44 +02:00
Kruglov Pavel
9bc74439c1
Merge pull request #37327 from Avogar/arrow-strings
...
Allow to use String type instead of Binary in Arrow/Parquet/ORC formats
2022-05-23 12:05:33 +02:00
Antonio Andelic
c268296fc6
Fix single node force recovery and add tests
2022-05-23 09:53:46 +00:00
Mikhail f. Shiryaev
cfe98c4aba
Fix publishing of content.clickhouse.com
...
- Publish only benchmarks and data
- Minimize clickhouse/docs-release
- Run it as a normal user
- Speed up running by not redownload virtual env deps
- Clean out docs and blog buildging
- Minimize docs/tools/requirements.txt
2022-05-23 11:50:02 +02:00
Kseniia Sumarokova
ca3feddf73
Merge pull request #37426 from Vxider/wv-simplify
...
Remove unused code in WindowView
2022-05-23 11:43:51 +02:00
Mikhail f. Shiryaev
fd217da123
Restore website release
2022-05-23 11:42:51 +02:00
Maksim Kita
98bb34f2f2
FunctionBinaryRepresentation style fixes
2022-05-23 10:59:33 +02:00
Vasily Nemkov
e481a707aa
Fixed test
2022-05-23 11:51:57 +03:00
Alexander Gololobov
7897a5bac7
Perf test for Norm and Distance fuctions for arrays and tuples
2022-05-23 10:18:24 +02:00
vdimir
6d2fab49f4
Add join_algorithm='parallel_hash' to stress test
2022-05-23 10:18:22 +02:00
Robert Schulze
e25ca139cd
Implement SQL functions (NOT) (I)LIKE() + MATCH() with non-const needles
...
With this commit, SQL functions LIKE and MATCH and their variants can
work with non-const needle arguments. E.g.
create table tab
(id UInt32, haystack String, needle String)
engine = MergeTree()
order by id;
insert into tab values
(1, 'Hello', '%ell%')
(2, 'World', '%orl%')
select id, haystack, needle, like(haystack, needle)
from tab;
For that, methods vectorVector() and vectorFixedVector() were added to
MatchImpl. The existing code for const needles has an optimization where
the compiled regexp is cached. The new code expects a different needle
per row and consequently does not cache the regexp.
2022-05-23 09:41:28 +02:00
Alexey Milovidov
89c8d136c3
Fix error
2022-05-23 07:20:36 +02:00
Alexey Milovidov
03b118557c
Fix error
2022-05-23 03:52:44 +02:00
Alexey Milovidov
39d157b9fb
Fix error
2022-05-23 03:52:00 +02:00
Alexey Milovidov
b432ca93a1
Fix error
2022-05-23 03:11:12 +02:00
Alexey Milovidov
c541d30a38
Fix error
2022-05-23 02:48:05 +02:00
Alexey Milovidov
cc985d9b92
Fix error
2022-05-23 02:30:33 +02:00
mergify[bot]
cc1362511a
Merge branch 'master' into patch-2
2022-05-23 00:12:44 +00:00
Alexey Milovidov
3431376d4e
Merge pull request #37396 from MasterOdin/patch-1
...
Fix docs for regionToTopContinent parameters
2022-05-23 03:09:53 +03:00
Alexey Milovidov
5d43f46908
Update ym-dict-functions.md
2022-05-23 03:09:28 +03:00
Alexey Milovidov
00592929e6
Merge pull request #37432 from den-crane/patch-11
...
Doc. generateUUIDv4 with argument.
2022-05-23 03:08:27 +03:00
Alexey Milovidov
f614c139f4
Maybe better
2022-05-23 02:06:03 +02:00
Alexey Milovidov
2f93f11144
Maybe better
2022-05-23 02:03:13 +02:00
Denny Crane
f8e2e0f1b2
Update uuid-functions.md
2022-05-22 20:24:18 -03:00
Denny Crane
5984d9993d
Update uuid-functions.md
2022-05-22 20:17:45 -03:00
Denny Crane
c478f2c21a
Update uuid-functions.md
2022-05-22 20:13:43 -03:00
Alexey Milovidov
7ad8d48771
Merge branch 'master' into allow-setuid-inside-clickhouse
2022-05-23 01:09:08 +02:00
Alexey Milovidov
698e5e5352
Merge pull request #37415 from Joeywzr/gen_uuid
...
Generate multiple columns with UUID
2022-05-23 00:29:42 +03:00
alesapin
0c61579859
More comments
2022-05-22 23:15:42 +02:00
Alexey Milovidov
b3ee8114d9
Minor change
2022-05-22 22:33:41 +02:00
Alexey Milovidov
1ed6a7463d
Merge pull request #37430 from ClickHouse/fix-benchmark-markup
...
Fix scroll in benchmark page
2022-05-22 22:49:15 +03:00
Alexey Milovidov
ad52b93913
Remove trash
2022-05-22 21:45:42 +02:00
Alexey Milovidov
e7dc438a48
Fix scroll in benchmark page
2022-05-22 21:35:00 +02:00
Alexey Milovidov
d32d45e12e
Merge pull request #37400 from ndchikin/window_frame_fix
...
WindowTransform::moveRowNumber fix
2022-05-22 20:35:00 +03:00
Alexey Milovidov
3b046472fe
Update 02306_window_move_row_number_fix.sql
2022-05-22 20:33:07 +03:00
Alexey Milovidov
ee31e822bf
Merge pull request #37422 from iley/patch-1
...
Fix a tiny wording issue
2022-05-22 20:27:30 +03:00
Robert Schulze
4829ae8380
Replace overly clever const argument logic by something simpler
...
The previous logic was smart but too inflexible to support the next
commits. Replace by a simple pushdown logic where string search
implementations return their const arguments instead of having the
common class figure these out based on properties/traits.
2022-05-22 17:50:38 +02:00
Robert Schulze
00d004c061
Remove -T flag from instructions about test creation
...
That flag no longer exists and test creation works fine w/o it (see
commit f07d4177a5
for a related change).
2022-05-22 17:50:38 +02:00
Robert Schulze
0299cc87e4
Improve naming consistency of string search code
...
Just renamings, nothing major ...
2022-05-22 17:50:38 +02:00
alesapin
06c3dd69c0
Move directories
2022-05-22 13:51:48 +02:00
Ilya Strukov
dff8c0e4f0
Fix a tiny wording issue
...
Replace "there are another ways" with "there are other ways"
2022-05-22 12:19:18 +02:00
Vxider
fcd317a642
update windowview create syntax
2022-05-22 10:18:34 +00:00
alesapin
eb69d963e2
Missed change
2022-05-22 12:16:50 +02:00
alesapin
c8d92b87c8
Merge branch 'master' into i_object_storage
2022-05-22 12:16:10 +02:00
Vxider
5f84f06d6d
simplify windowview
2022-05-22 10:13:16 +00:00
Robert Schulze
19d53c14fa
Merge pull request #37382 from ClickHouse/wc++98-compat-extra-semi
...
Enable -Wc++98-compat-extra-semi
2022-05-22 09:40:45 +02:00
Memo
aa503f699a
fix tests
2022-05-22 13:43:05 +08:00
Memo
3a17180a4f
fix tests
2022-05-22 13:42:36 +08:00
Memo
15a76d012f
add NUMBER_OF_ARGUMENTS_DOESNT_MATCH defination
2022-05-22 13:38:47 +08:00
alesapin
b3bc0a18a0
fix test
2022-05-22 00:13:01 +02:00