mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-23 08:02:02 +00:00
update comments
This commit is contained in:
parent
de5e2b4d6b
commit
e122d54dcb
@ -10,6 +10,10 @@ namespace DB
|
|||||||
bool less(const Field & lhs, const Field & rhs, int direction);
|
bool less(const Field & lhs, const Field & rhs, int direction);
|
||||||
bool equals(const Field & lhs, const Field & rhs);
|
bool equals(const Field & lhs, const Field & rhs);
|
||||||
|
|
||||||
|
/** Helps to implement modifier WITH FILL for ORDER BY clause.
|
||||||
|
* Stores row as array of fields and provides functions to generate next row for filling gaps and for comparing rows.
|
||||||
|
* Used in FillingBlockInputStream and in FillingTransform.
|
||||||
|
*/
|
||||||
class FillingRow
|
class FillingRow
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
@ -6,7 +6,9 @@
|
|||||||
namespace DB
|
namespace DB
|
||||||
{
|
{
|
||||||
|
|
||||||
/** Implements the WITH FILL part of ORDER BY operation.
|
/** Implements modifier WITH FILL of ORDER BY clause.
|
||||||
|
* It fills gaps in data stream by rows with missing values in columns with set WITH FILL and deafults in other columns.
|
||||||
|
* Optionally FROM, TO and STEP values can be specified.
|
||||||
*/
|
*/
|
||||||
class FillingBlockInputStream : public IBlockInputStream
|
class FillingBlockInputStream : public IBlockInputStream
|
||||||
{
|
{
|
||||||
|
@ -6,7 +6,9 @@
|
|||||||
namespace DB
|
namespace DB
|
||||||
{
|
{
|
||||||
|
|
||||||
/** Implements the WITH FILL part of ORDER BY operation.
|
/** Implements modifier WITH FILL of ORDER BY clause.
|
||||||
|
* It fills gaps in data stream by rows with missing values in columns with set WITH FILL and deafult values in other columns.
|
||||||
|
* Optionally FROM, TO and STEP values can be specified.
|
||||||
*/
|
*/
|
||||||
class FillingTransform : public ISimpleTransform
|
class FillingTransform : public ISimpleTransform
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user