From 59a9aaea168920365dbc12a48838931b94f95dca Mon Sep 17 00:00:00 2001 From: florijan Date: Thu, 13 Apr 2017 16:11:44 +0200 Subject: [PATCH] Query::Context - removed some junk Reviewers: teon.banek, mislav.bradac Reviewed By: mislav.bradac Subscribers: pullbot Differential Revision: https://phabricator.memgraph.io/D278 --- src/query/context.hpp | 19 ++++--------------- 1 file changed, 4 insertions(+), 15 deletions(-) diff --git a/src/query/context.hpp b/src/query/context.hpp index 75bab8f65..cb275d644 100644 --- a/src/query/context.hpp +++ b/src/query/context.hpp @@ -5,22 +5,11 @@ namespace query { -class TypedcheckedTree {}; - -class LogicalPlan {}; - -class Context; -class Query; - -class LogicalPlanGenerator { -public: - std::vector Generate(TypedcheckedTree &, Context &) { - return {LogicalPlan()}; - } -}; - +/** + * Future-proofing for the time when we'll actually have + * something to configure in query execution. + */ struct Config { - LogicalPlanGenerator logical_plan_generator; }; class Context {