Commit Graph

100791 Commits

Author SHA1 Message Date
Dan Roscigno
c2749a8971
Merge pull request #42902 from ClickHouse/DanRoscigno-patch-2
Update projection.md
2022-11-02 10:47:03 -04:00
Camilo Sierra
b6d84ef5fa
range hashed missing parameters
On the query we have missing two options:
- `LIFETIME` Is not on the example if you copy paste you will have an Exception `DB::Exception: Cannot create dictionary with empty lifetime.`
- `SOURCE` was not mentioned and it's important to link to the main/source table.
- There was an error on the `dictGetT` function there was an additional T this function do not exist (I have tested and we need to use `dictGet`).
- Also in the Dictionary example we have no extra attribute other than the id and the two dates, and for running the queries and the `dicGet` function you need an additional attribute this is why I have added `advertiser_id` (BTW I use advertiser_id as this was use in the example just before) and also add one example, without the example it was not easy to understand what was the 'attr_name' mentioned before.
- I add an example as an user did not knew how to cast the date to a Uint64 (Because most of the time the original/raw dates are defined on the range as Date64, so this example will explain them how to cast when doing the query)
2022-11-02 15:43:57 +01:00
Dan Roscigno
4c77987bf8
Update projection.md
Experiment with Algolia search
2022-11-02 10:41:55 -04:00
Alexey Milovidov
204dac3d5d
Suggest using https://fiddle.clickhouse.com/ 2022-11-02 17:14:20 +03:00
DanRoscigno
cc77e30024 add text, update image 2022-11-02 09:59:20 -04:00
Kruglov Pavel
38124b6533
Merge pull request #42780 from Avogar/parallel-parsing
Support parallel parsing for LineAsString input format
2022-11-02 13:21:53 +01:00
Mikhail f. Shiryaev
550c776ffe
Wait for all files are in sync before archiving them 2022-11-02 13:16:27 +01:00
ltrk2
431e1aa3fa Implement functional tests 2022-11-02 08:14:28 -04:00
ltrk2
14141c9071 Add support for FixedString input to base64 functions 2022-11-02 08:14:28 -04:00
Dan Roscigno
8d7d1cf682
Merge branch 'ClickHouse:master' into add-vis-to-cell-towers 2022-11-02 07:58:15 -04:00
Robert Schulze
8ec4c77352
Merge pull request #42855 from GoGoWen/fix_typo
Fix typo
2022-11-02 12:54:52 +01:00
alesapin
8965ac2dfe
Merge pull request #42625 from ClickHouse/DanRoscigno-patch-2
Update Fedora build info
2022-11-02 12:32:02 +01:00
Vladimir C
f489359b49
Merge pull request #42857 from ClickHouse/vdimir/fix_datediff_date32 2022-11-02 11:58:54 +01:00
vdimir
40314e9030 Add timezone to 02458_datediff_date32 2022-11-02 11:58:18 +01:00
Sema Checherinda
50951ea0e0
Merge pull request #42862 from ClickHouse/workflow-names
Adjust cancel and rerun workflow names to the actual
2022-11-02 11:05:13 +01:00
Sema Checherinda
cf830e5a08
Merge pull request #42886 from holadepo/patch-2
Fix minor typos in intersect statement documentation
2022-11-02 10:55:12 +01:00
Antonio Andelic
c4b717b343
Update src/Storages/MergeTree/MergeTreeDataMergerMutator.cpp
Co-authored-by: Sergei Trifonov <sergei@clickhouse.com>
2022-11-02 08:24:54 +01:00
Habibullah Oladepo
ba34ad37d1
Fix minor typos in intersect statement documentation 2022-11-02 08:02:01 +01:00
zzsmdfj
65e1eba1af
Merge branch 'master' into fix_join_to_subqueries_null_pointer 2022-11-02 13:30:07 +08:00
zzsmdfj
61123b7f54 to fix join to subqueries rewriter null pointer 2022-11-02 11:34:15 +08:00
Duc Canh Le
ec382d7903 add comment 2022-11-02 09:50:41 +08:00
Duc Canh Le
c6598dc66d
Merge branch 'master' into ch_canh_fix_prefix_not_like 2022-11-02 09:42:01 +08:00
Dmitry Novik
e06572cc27 Validate Query Tree in debug 2022-11-01 23:03:07 +00:00
Dan Roscigno
96223b3b8b
Merge pull request #42877 from DanRoscigno/update-update-docs
rename update file as it is included in Manage > Updates
2022-11-01 16:37:31 -04:00
Dan Roscigno
eafcc23240
Merge branch 'master' into update-update-docs 2022-11-01 16:27:46 -04:00
DanRoscigno
32e1c3b1e6 rename update file as it is included in Manage > Updates 2022-11-01 16:25:54 -04:00
Dan Roscigno
a482659b9c
Merge pull request #42875 from ClickHouse/DanRoscigno-patch-4
Add link to docs repo contrib writing guide
2022-11-01 16:21:47 -04:00
Mikhail f. Shiryaev
b99ea56db8
Add more possible issues for cleaning apt cache 2022-11-01 21:00:52 +01:00
Dan Roscigno
62428989b4
Add link to docs repo contrib writing guide 2022-11-01 14:06:42 -04:00
Mikhail f. Shiryaev
6bd98d7b9d
Merge pull request #42871 from ClickHouse/auto/v22.10.2.11-stable
Update version_date.tsv and changelogs after v22.10.2.11-stable
2022-11-01 18:56:13 +01:00
Azat Khuzhin
e58008b711 Fix rare possible hung on query cancellation
Some queries can hung after cancelling (because enough rows had been
read for Distributed queries) or after KILL. Example of such query is a
Distributed query that uses DelayedSource that uses ExpandPipeline to
add new processors, and in this case it is possible that all already
existing processes was cancelled but new had been added and now
PipelineExecutor will wait for them undefinitelly since nobody will read
from them and nobody will cancel them either.

Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
2022-11-01 18:17:47 +01:00
Dan Roscigno
4b2a1e2b1c
Merge pull request #42873 from DanRoscigno/update-UDF-docs
add to page title for search
2022-11-01 13:10:45 -04:00
Vitaly Baranov
53ae7aba9a
Merge pull request #42628 from azat/s3-plain-fixes
Implement ATTACH of MergeTree table for s3_plain disk
2022-11-01 18:00:46 +01:00
DanRoscigno
e5f9c65590 add to page title for search 2022-11-01 12:56:41 -04:00
Vitaly Baranov
085fb80190 Spare stack in InDepthNodeVisitor. 2022-11-01 17:20:12 +01:00
Yakov Olkhovskiy
16159cc7a9
Merge pull request #42412 from ClibMouse/formatIpv6_s390x_support
format ipv6 in s390x, endianess support
2022-11-01 12:02:44 -04:00
robot-clickhouse
fc1ae1d99d Update version_date.tsv and changelogs after v22.10.2.11-stable 2022-11-01 15:50:38 +00:00
Dan Roscigno
6d855755ef
Merge pull request #42844 from i94rain/fix-broken-links
Fix broken links in system tables docs
2022-11-01 11:47:26 -04:00
Alexey Milovidov
48dcae0bd2
Merge pull request #42834 from ClickHouse/snyk-exclusion
Add exclusions from the Snyk scan
2022-11-01 16:12:28 +01:00
Anton Popov
88674ef964
Merge pull request #42794 from CurtizJ/better-code-in-check-part
Slightly better code with projections
2022-11-01 16:05:27 +01:00
Anton Popov
876dca48da
Merge pull request #36969 from CurtizJ/dynamic-columns-14
Support `Object` type inside other types
2022-11-01 15:20:02 +01:00
Duc Canh Le
07d9720ed5
Merge branch 'master' into ch_canh_fix_prefix_not_like 2022-11-01 22:16:09 +08:00
Kruglov Pavel
c3a7211c1c
Merge pull request #41502 from marcioapm/coercing-json-extract
Add coercing in JSONExtract
2022-11-01 14:52:41 +01:00
Mikhail f. Shiryaev
09b320f9a1
Merge pull request #42643 from peter279k/add_deb_migration
Migration method for installing the deb-packages
2022-11-01 14:46:45 +01:00
Mikhail f. Shiryaev
3f424de022
Adjust cancel and rerun workflow names to the actual 2022-11-01 14:26:06 +01:00
SaltTan
3afc688751
Update docs/en/sql-reference/statements/check-table.md
Co-authored-by: Ilya Yatsishin <2159081+qoega@users.noreply.github.com>
2022-11-01 13:04:24 +00:00
Kruglov Pavel
7cbb534388
Merge pull request #42536 from ClickHouse/Avogar-patch-3
Fix typo in setting name that led to bad usage of schema inference cache
2022-11-01 14:03:47 +01:00
Kruglov Pavel
21d50f76ea
Merge pull request #41979 from Avogar/s3-cluster-schema-inference
Fix schema inference in s3Cluster and improve in hdfsCluster
2022-11-01 14:00:21 +01:00
Maksim Kita
aa1c7d0de4
Merge pull request #42824 from den-crane/tests/lambda_analyzer
Tests/lambda analyzer
2022-11-01 14:29:20 +03:00
Vitaly Baranov
b9f2f17331 Add test and logging. 2022-11-01 12:23:20 +01:00