Default should be the compiler for the test.

Reviewers: teon.banek

Reviewed By: teon.banek

Subscribers: pullbot

Differential Revision: https://phabricator.memgraph.io/D241
This commit is contained in:
Dominik Gleich 2017-04-06 15:43:56 +02:00
parent e8fe25bc61
commit ebff4687a1

View File

@ -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;