mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 21:24:28 +00:00
17 lines
282 B
C++
17 lines
282 B
C++
#pragma once
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/// A result code for the KILL QUERY/KILL MUTATION statement.
|
|
enum class CancellationCode
|
|
{
|
|
NotFound = 0, /// already cancelled
|
|
QueryIsNotInitializedYet = 1,
|
|
CancelCannotBeSent = 2,
|
|
CancelSent = 3,
|
|
Unknown
|
|
};
|
|
|
|
}
|