mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-23 08:02:02 +00:00
better
This commit is contained in:
parent
f52870c8d2
commit
64ee0090cb
@ -1024,7 +1024,7 @@ The result of the function depends on the affected data blocks and the order of
|
||||
|
||||
:::note
|
||||
Only returns neighbor inside the currently processed data block.
|
||||
Because of this error-prone behavior the function is DEPRECATED.
|
||||
Because of this error-prone behavior the function is DEPRECATED, please use proper window functions instead.
|
||||
:::
|
||||
|
||||
The order of rows during calculation of `neighbor()` can differ from the order of rows returned to the user.
|
||||
@ -1135,7 +1135,7 @@ Returns 0 for the first row, and for subsequent rows the difference to the previ
|
||||
|
||||
:::note
|
||||
Only returns differences inside the currently processed data block.
|
||||
Because of this error-prone behavior the function is DEPRECATED.
|
||||
Because of this error-prone behavior the function is DEPRECATED, please use proper window functions instead.
|
||||
:::
|
||||
|
||||
The result of the function depends on the affected data blocks and the order of data in the block.
|
||||
@ -1936,7 +1936,7 @@ Accumulates the states of an aggregate function for each row of a data block.
|
||||
|
||||
:::note
|
||||
The state is reset for each new block of data.
|
||||
Because of this error-prone behavior the function is DEPRECATED.
|
||||
Because of this error-prone behavior the function is DEPRECATED, please use proper window functions instead.
|
||||
:::
|
||||
|
||||
**Syntax**
|
||||
|
@ -40,7 +40,7 @@ public:
|
||||
throw Exception(
|
||||
ErrorCodes::DEPRECATED_FUNCTION,
|
||||
"Function {} is deprecated since its usage is error-prone (see docs)."
|
||||
"Set `allow_deprecated_functions` setting to enable it",
|
||||
"Please use proper window function or set `allow_deprecated_functions` setting to enable it",
|
||||
name);
|
||||
|
||||
return std::make_shared<FunctionNeighbor>();
|
||||
|
@ -43,7 +43,7 @@ public:
|
||||
throw Exception(
|
||||
ErrorCodes::DEPRECATED_FUNCTION,
|
||||
"Function {} is deprecated since its usage is error-prone (see docs)."
|
||||
"Set `allow_deprecated_functions` setting to enable it",
|
||||
"Please use proper window function or set `allow_deprecated_functions` setting to enable it",
|
||||
name);
|
||||
|
||||
return std::make_shared<FunctionRunningAccumulate>();
|
||||
|
@ -143,7 +143,7 @@ public:
|
||||
throw Exception(
|
||||
ErrorCodes::DEPRECATED_FUNCTION,
|
||||
"Function {} is deprecated since its usage is error-prone (see docs)."
|
||||
"Set `allow_deprecated_functions` setting to enable it",
|
||||
"Please use proper window function or set `allow_deprecated_functions` setting to enable it",
|
||||
name);
|
||||
|
||||
return std::make_shared<FunctionRunningDifferenceImpl<is_first_line_zero>>();
|
||||
|
Loading…
Reference in New Issue
Block a user