1 | #include "duckdb/parallel/thread_context.hpp" |
---|---|
2 | #include "duckdb/execution/execution_context.hpp" |
3 | #include "duckdb/main/client_context.hpp" |
4 | |
5 | namespace duckdb { |
6 | |
7 | ThreadContext::ThreadContext(ClientContext &context) : profiler(QueryProfiler::Get(context).IsEnabled()) { |
8 | } |
9 | |
10 | } // namespace duckdb |
11 |