ClickHouse/dbms/src/Interpreters/CancellationCode.h

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