mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-23 08:02:02 +00:00
15 lines
181 B
C++
15 lines
181 B
C++
#pragma once
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/// Some window functions support adding [IGNORE|RESPECT] NULLS
|
|
enum class NullsAction : UInt8
|
|
{
|
|
EMPTY,
|
|
RESPECT_NULLS,
|
|
IGNORE_NULLS,
|
|
};
|
|
|
|
}
|