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