ClickHouse/src/Parsers/NullsAction.h

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,
};
}