From b998c97280a7e34def6524582291a6cb50604baf Mon Sep 17 00:00:00 2001 From: Mark Raasveldt Date: Wed, 4 Mar 2020 18:43:52 +0100 Subject: [PATCH] Fixes for individual file compilation --- src/include/duckdb/common/storage_util.hpp | 1 + src/include/duckdb/planner/operator/logical_table_function.hpp | 1 + src/include/duckdb/planner/tableref/bound_table_function.hpp | 1 + 3 files changed, 3 insertions(+) diff --git a/src/include/duckdb/common/storage_util.hpp b/src/include/duckdb/common/storage_util.hpp index 5a50a0356a0..7d0aecfaef2 100644 --- a/src/include/duckdb/common/storage_util.hpp +++ b/src/include/duckdb/common/storage_util.hpp @@ -9,6 +9,7 @@ #pragma once #include "constants.hpp" +#include namespace duckdb { constexpr const size_t FULL_MASK = 0xFF; diff --git a/src/include/duckdb/planner/operator/logical_table_function.hpp b/src/include/duckdb/planner/operator/logical_table_function.hpp index e72e4f163fa..00a5f568044 100644 --- a/src/include/duckdb/planner/operator/logical_table_function.hpp +++ b/src/include/duckdb/planner/operator/logical_table_function.hpp @@ -10,6 +10,7 @@ #include "duckdb/planner/logical_operator.hpp" #include "duckdb/function/function.hpp" +#include "duckdb/common/types/value.hpp" namespace duckdb { diff --git a/src/include/duckdb/planner/tableref/bound_table_function.hpp b/src/include/duckdb/planner/tableref/bound_table_function.hpp index 4ecc8590bc7..c614c96de7c 100644 --- a/src/include/duckdb/planner/tableref/bound_table_function.hpp +++ b/src/include/duckdb/planner/tableref/bound_table_function.hpp @@ -11,6 +11,7 @@ #include "duckdb/common/types/value.hpp" #include "duckdb/planner/expression.hpp" #include "duckdb/planner/bound_tableref.hpp" +#include "duckdb/function/function.hpp" namespace duckdb { class TableFunctionCatalogEntry;