Skip to content

Commit 25143d0

Browse files
committed
start fixing 404s
1 parent ca5c53c commit 25143d0

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.htmltest.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
DirectoryPath: build/
22
IgnoreDirectoryMissingTrailingSlash: true
33
CheckExternal: true
4-
CheckInternal: false
4+
CheckInternal: true
55
CheckInternalHash: false
66
IgnoreAltMissing: true
77
IgnoreEmptyHref: true
@@ -11,6 +11,7 @@ IgnoreURLs:
1111
- https://62VCH2MD74-dsn.algolia.net
1212
- https://www.googletagmanager.com
1313
- http://localhost*
14+
- http://127.0.0.1*
1415
- https://clickhouse-test-reports.s3.yandex.net/*
1516
- https://github.com/ercolanelli-leo
1617
- https://github.com/igron99
@@ -26,5 +27,7 @@ IgnoreURLs:
2627
- https://www.indeed.com/*
2728
- http://souslecapot.net/*
2829
- https://www.yandex.com/company/*
30+
- https://clickhouse-public-datasets.s3.amazonaws.com/my-bucket/some_folder/*
31+
- https://clickhouse-public-datasets.s3.amazonaws.com/my-test-bucket-768/*
2932

3033

docs/en/whats-new/changelog/2019.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -783,7 +783,7 @@ title: 2019 Changelog
783783

784784
#### Backward Incompatible Change {#backward-incompatible-change-3}
785785

786-
- Removed rarely used table function `catBoostPool` and storage `CatBoostPool`. If you have used this table function, please write email to `clickhouse-feedback@yandex-team.com`. Note that CatBoost integration remains and will be supported. [#6279](https://github.com/ClickHouse/ClickHouse/pull/6279) ([alexey-milovidov](https://github.com/alexey-milovidov))
786+
- Removed rarely used table function `catBoostPool` and storage `CatBoostPool`. If you have used this table function, please write email to `feedback@clickhouse.com`. Note that CatBoost integration remains and will be supported. [#6279](https://github.com/ClickHouse/ClickHouse/pull/6279) ([alexey-milovidov](https://github.com/alexey-milovidov))
787787
- Disable `ANY RIGHT JOIN` and `ANY FULL JOIN` by default. Set `any_join_distinct_right_table_keys` setting to enable them. [#5126](https://github.com/ClickHouse/ClickHouse/issues/5126) [#6351](https://github.com/ClickHouse/ClickHouse/pull/6351) ([Artem Zuikov](https://github.com/4ertus2))
788788

789789
## ClickHouse Release 19.13 {#clickhouse-release-19-13}

docs/en/whats-new/changelog/2021.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1781,7 +1781,7 @@ title: 2021 Changelog
17811781
* Restrict `ALTER MODIFY SETTING` from changing storage settings that affects data parts (`write_final_mark` and `enable_mixed_granularity_parts`). [#18306](https://github.com/ClickHouse/ClickHouse/pull/18306) ([Amos Bird](https://github.com/amosbird)).
17821782
* Set `insert_quorum_parallel` to 1 by default. It is significantly more convenient to use than "sequential" quorum inserts. But if you rely to sequential consistency, you should set the setting back to zero. [#17567](https://github.com/ClickHouse/ClickHouse/pull/17567) ([alexey-milovidov](https://github.com/alexey-milovidov)).
17831783
* Remove `sumburConsistentHash` function. This closes [#18120](https://github.com/ClickHouse/ClickHouse/issues/18120). [#18656](https://github.com/ClickHouse/ClickHouse/pull/18656) ([alexey-milovidov](https://github.com/alexey-milovidov)).
1784-
* Removed aggregate functions `timeSeriesGroupSum`, `timeSeriesGroupRateSum` because a friend of mine said they never worked. This fixes [#16869](https://github.com/ClickHouse/ClickHouse/issues/16869). If you have luck using these functions, write a email to clickhouse-feedback@yandex-team.com. [#17423](https://github.com/ClickHouse/ClickHouse/pull/17423) ([alexey-milovidov](https://github.com/alexey-milovidov)).
1784+
* Removed aggregate functions `timeSeriesGroupSum`, `timeSeriesGroupRateSum` because a friend of mine said they never worked. This fixes [#16869](https://github.com/ClickHouse/ClickHouse/issues/16869). If you have luck using these functions, write a email to feedback@clickhouse.com. [#17423](https://github.com/ClickHouse/ClickHouse/pull/17423) ([alexey-milovidov](https://github.com/alexey-milovidov)).
17851785
* Prohibit toUnixTimestamp(Date()) (before it just returns UInt16 representation of Date). [#17376](https://github.com/ClickHouse/ClickHouse/pull/17376) ([Azat Khuzhin](https://github.com/azat)).
17861786
* Allow using extended integer types (`Int128`, `Int256`, `UInt256`) in `avg` and `avgWeighted` functions. Also allow using different types (integer, decimal, floating point) for value and for weight in `avgWeighted` function. This is a backward-incompatible change: now the `avg` and `avgWeighted` functions always return `Float64` (as documented). Before this change the return type for `Decimal` arguments was also `Decimal`. [#15419](https://github.com/ClickHouse/ClickHouse/pull/15419) ([Mike](https://github.com/myrrc)).
17871787
* Expression `toUUID(N)` no longer works. Replace with `toUUID('00000000-0000-0000-0000-000000000000')`. This change is motivated by non-obvious results of `toUUID(N)` where N is non zero.

0 commit comments

Comments
 (0)