From ebff4687a172b35d1278e16d8b8fc25bb3a3738c Mon Sep 17 00:00:00 2001 From: Dominik Gleich Date: Thu, 6 Apr 2017 15:43:56 +0200 Subject: [PATCH] Default should be the compiler for the test. Reviewers: teon.banek Reviewed By: teon.banek Subscribers: pullbot Differential Revision: https://phabricator.memgraph.io/D241 --- tests/integration/query_engine.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/integration/query_engine.cpp b/tests/integration/query_engine.cpp index 9bfe1fb92..22e2d2b8f 100644 --- a/tests/integration/query_engine.cpp +++ b/tests/integration/query_engine.cpp @@ -29,6 +29,9 @@ int main(int argc, char *argv[]) { // Manually set config compile_path to avoid loading whole config file with // the test. CONFIG(config::COMPILE_PATH) = "../compiled/"; + // Set the interpret to false to avoid calling the interpreter which doesn't + // support all the queries yet. + CONFIG(config::INTERPRET) = "false"; Dbms dbms; StreamT stream(std::cout); QueryEngineT query_engine;