mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-16 11:22:12 +00:00
14 lines
126 B
C++
14 lines
126 B
C++
#pragma once
|
|
|
|
#include <Core/Types.h>
|
|
|
|
namespace DB
|
|
{
|
|
enum WINDOW_VIEW_FIRE_STATUS
|
|
{
|
|
WAITING,
|
|
READY,
|
|
RETIRED
|
|
};
|
|
}
|