From 4617d40343b380a0becf0213c06aeec3b15e2e01 Mon Sep 17 00:00:00 2001 From: Onder Kalaci Date: Tue, 4 Apr 2017 15:35:46 +0300 Subject: [PATCH] rename file -- add missing file --- src/include/distributed/multi_planner_utils.h | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/include/distributed/multi_planner_utils.h diff --git a/src/include/distributed/multi_planner_utils.h b/src/include/distributed/multi_planner_utils.h new file mode 100644 index 000000000..8d515db53 --- /dev/null +++ b/src/include/distributed/multi_planner_utils.h @@ -0,0 +1,22 @@ +/* + * multi_planner_utils.h + * + * This file contains functions helper functions for planning + * queries with colocated tables and subqueries. + * + * Copyright (c) 2017-2017, Citus Data, Inc. + * + *------------------------------------------------------------------------- + */ + +#ifndef MULTI_PLANNER_UTILS_H +#define MULTI_PLANNER_UTILS_H + +#include "distributed/multi_planner.h" + + +extern bool AllRelationsJoinedOnPartitionKey(PlannerRestrictionContext * + plannerRestrictionContext); + + +#endif /* MULTI_PLANNER_UTILS_H */