bharatnc
0491341953
docs for h3GetUnidirectionalEdgeBoundary
2022-05-02 21:53:39 -07:00
bharatnc
58c471559e
tests for h3GetUnidirectionalEdgeBoundary
2022-05-02 21:44:17 -07:00
bharatnc
a0da885c3c
add h3GetUnidirectionalEdgeBoundary func
2022-05-02 21:38:54 -07:00
bharatnc
680fb0f265
docs for h3GetUnidirectionalEdgesFromHexagon
2022-05-01 22:38:01 -07:00
bharatnc
91d132d645
tests for h3GetUnidirectionalEdgesFromHexagon
2022-05-01 22:30:47 -07:00
bharatnc
745a44a7b0
add h3GetUnidirectionalEdgesFromHexagon func
2022-05-01 22:25:58 -07:00
bharatnc
03db6738bb
docs for h3GetIndexesFromUnidirectionalEdge
2022-05-01 21:34:32 -07:00
bharatnc
853811c94a
tests for h3GetIndexesFromUnidirectionalEdge
2022-05-01 21:26:55 -07:00
bharatnc
30d14c1217
add h3GetIndexesFromUnidirectionalEdge func
2022-05-01 21:26:44 -07:00
bharatnc
b5a914ed04
docs for h3GetDestinationIndexFromUnidirectionalEdge
2022-05-01 14:11:53 -07:00
bharatnc
7e96156bcc
tests for h3GetDestinationIndexFromUnidirectionalEdge
2022-05-01 14:09:31 -07:00
bharatnc
77b5f6fee0
add h3GetDestinationIndexFromUnidirectionalEdge func
2022-05-01 14:06:45 -07:00
bharatnc
9ec187ef22
docs for h3GetOriginIndexFromUnidirectionalEdge
2022-05-01 13:53:44 -07:00
bharatnc
7cb7d142a9
add tests h3GetOriginIndexFromUnidirectionalEdge
2022-05-01 13:53:06 -07:00
bharatnc
7e871adf91
add h3GetOriginIndexFromUnidirectionalEdge func
2022-05-01 13:47:43 -07:00
bharatnc
59e1f252fd
docs for h3UnidirectionalEdgeIsValid func
2022-05-01 13:27:48 -07:00
bharatnc
276b39b9ac
add test h3UnidirectionalEdgeIsValid
2022-05-01 13:21:42 -07:00
bharatnc
0e4a833717
add h3UnidirectionalEdgeIsValid func
2022-05-01 13:21:18 -07:00
bharatnc
925afc8f19
docs for h3GetUnidirectionalEdge
2022-05-01 11:12:11 -07:00
bharatnc
12f74bc124
add tests for h3GetunidirectionalEdge
2022-05-01 11:12:10 -07:00
bharatnc
6ce66e6d13
add func h3GetUnidirectionalEdge
2022-05-01 11:12:05 -07:00
Nikita Mikhaylov
93a65463d0
Added SYSTEM SYNC DATABASE
query ( #35944 )
2022-05-01 15:40:18 +02:00
Alexey Milovidov
b034146ba4
Merge pull request #36799 from azat/cleanup
...
Tiny cleanup
2022-05-01 14:23:13 +03:00
Alexey Milovidov
321514a7f3
Merge pull request #36816 from azat/is_all_data_sent-on-exception
...
Set is_all_data_sent on exceptions too
2022-05-01 14:22:06 +03:00
Alexey Milovidov
69ae22070f
Merge pull request #36824 from ClickHouse/log-test-sanity-check
...
Add sanity check for log level. Fix style.
2022-05-01 14:03:22 +03:00
Nikita Taranov
92f8244932
Fix certs (finishing pr #36457 ) ( #36747 )
2022-05-01 12:59:19 +02:00
Nikita Taranov
0fd9740c72
Log hash table's cache messages with TRACE level ( #36830 )
2022-05-01 12:54:54 +02:00
Alexey Milovidov
ff4e562997
Merge pull request #36641 from ClickHouse/release-prefetch
...
Simplify check_branch, prefetch target branches
2022-05-01 13:53:35 +03:00
Alexey Milovidov
b79c6cef84
Merge pull request #36756 from CurtizJ/type-json-bool
...
Deduce `UInt8` type for bools from json instead of `UInt64`
2022-05-01 13:51:28 +03:00
Alexey Milovidov
189938e935
Merge pull request #36431 from rschu1ze/bugprone-branch-clone
...
Fixed warnings of clang-tidy check "bugprone-branch-clone"
2022-05-01 13:49:37 +03:00
Alexey Milovidov
a31e425872
Merge pull request #36798 from ClickHouse/poco-update-58
...
pull poco #58
2022-05-01 13:48:29 +03:00
Alexey Milovidov
ae8b19aef6
Merge pull request #36828 from ClickHouse/cleanup-docs
...
Cleanup code for old docs
2022-05-01 13:45:27 +03:00
Alexey Milovidov
ac43db5cab
Merge pull request #36831 from rschu1ze/obsolete-gcc-switches
...
Cleanup: Remove switches for obsolete GCC version
2022-05-01 13:43:31 +03:00
Alexey Milovidov
91d1ac913c
Merge pull request #36820 from azat/fix-asynchronous_metric_log
...
Avoid recreation of system.asynchronous_metric_log (due to difference in codec)
2022-05-01 13:42:17 +03:00
Robert Schulze
a9215214b7
Remove switches for obsolete GCC version
...
GCC_MINIMUM_VERSION is 11 --> remove special logic for earlier GCCs.
2022-04-30 20:33:20 +02:00
Robert Schulze
89aa9ae00f
Fixed clang-tidy check "bugprone-branch-clone"
...
The check is currently *not* part of .clang-tidy. It complains about:
(1) "switch has multiple consecutive identical branches"
(2) "repeated branch in conditional chain"
About (1): Lots of findings in switches were about redundant
"[[fallthrough]]" in places where the compiler would not warn anyways. I
have cleaned these up.
About (2): In if-else_if-else chains, fixing the warning would usually
mean concatenating multiple if-conditions. As this would reduce
readability in most cases, I did not fix these places.
Because of (2), I also refrained from adding "bugprone-branch-clone" to
.clang-tidy.
2022-04-30 19:40:28 +02:00
Alexey Milovidov
149600bc95
Remove minify
2022-04-30 16:37:04 +02:00
Alexey Milovidov
7fab0437d9
Remove git log
2022-04-30 16:30:36 +02:00
Alexey Milovidov
eb6346b704
Remove purify-css and npm
2022-04-30 16:29:01 +02:00
Alexey Milovidov
07d2daeb16
Remove amp
2022-04-30 16:27:02 +02:00
Kseniia Sumarokova
66f62b2ba6
Merge pull request #36632 from DevTeamBK/Fix-Coverity-Issues
...
Minor Coverity defects fixes
2022-04-30 15:11:40 +02:00
Nikita Mikhaylov
117ffa90cf
Fix ungrammatical error message ( #36760 )
2022-04-30 13:57:13 +02:00
Alexey Milovidov
47988db1a5
Add sanity check for log level. Fix style.
2022-04-30 13:19:25 +02:00
Kseniia Sumarokova
56f37d54ab
Merge pull request #36809 from ClickHouse/kssenii-patch-3
...
Update CachedReadBufferFromRemoteFS.cpp
2022-04-30 12:57:51 +02:00
Alexey Milovidov
5a3c3b3017
Merge pull request #36813 from ClickHouse/style-docs-workflow
...
Fix style error in DocsCheck
2022-04-30 13:33:22 +03:00
Alexey Milovidov
8740d82bb5
Merge pull request #36819 from ClickHouse/protection-from-incorrect-build
...
Protection from incorrect build
2022-04-30 13:32:43 +03:00
Azat Khuzhin
d82f2ff162
Set is_all_data_sent on exceptions too
...
This will avoid clickhouse-test complains about left queries after the
test, like in [1].
[1]: https://s3.amazonaws.com/clickhouse-test-reports/36258/9646487c093a75dc31e3e818417cfad83580b40f/stateful_tests__memory__actions_.html
Follow-up for: #36649
2022-04-30 13:00:44 +03:00
Alexey Milovidov
65f33a3089
Merge pull request #36821 from kayhaw/patch-2
...
Translate playground.md to Chinese
2022-04-30 12:53:08 +03:00
小蝌蚪
1dc653f0ec
Translate playground.md to Chinese
2022-04-30 17:20:15 +08:00
Azat Khuzhin
a75559aa36
Avoid recreation of system.asynchronous_metric_log (due to difference in codec)
...
From the log:
2022.04.29 12:33:40.397528 [ 486 ] {} <Debug> SystemLog (system.asynchronous_metric_log): Existing table system.asynchronous_metric_log for system log has obsolete or different structure. Renaming it to asynchronous_metric_log_352.
Old: CREATE TABLE system.asynchronous_metric_log (`event_date` Date CODEC(Delta(2), ZSTD(1)), `event_time` DateTime CODEC(Delta(4), ZSTD(1)), `metric` LowCardinality(String) CODEC(ZSTD(1)), `value` Float64 CODEC(Gorilla, ZSTD(3))) ENGINE = MergeTree PARTITION BY toYYYYMM(event_date) ORDER BY (metric, event_date, event_time) SETTINGS index_granularity = 8192
New: CREATE TABLE system.asynchronous_metric_log (`event_date` Date CODEC(Delta(2), ZSTD), `event_time` DateTime CODEC(Delta(4), ZSTD), `metric` LowCardinality(String) CODEC(ZSTD), `value` Float64 CODEC(Gorilla, ZSTD(3))) ENGINE = MergeTree PARTITION BY toYYYYMM(event_date) ORDER BY (metric, event_date, event_time) SETTINGS index_granularity = 8192
As you can see the difference in default ZSTD level.
P.S. I decided not to fix the printer, since this may introduce changes
in metadata, that may lead to changes in metadata between ZooKeeper and
clickhouse server.
Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
2022-04-30 12:19:29 +03:00