1//===----------------------------------------------------------------------===//
2// DuckDB
3//
4// duckdb/common/enums/pending_execution_result.hpp
5//
6//
7//===----------------------------------------------------------------------===//
8
9#pragma once
10
11#include "duckdb/common/constants.hpp"
12
13namespace duckdb {
14
15enum class PendingExecutionResult : uint8_t { RESULT_READY, RESULT_NOT_READY, EXECUTION_ERROR };
16
17} // namespace duckdb
18