memgraph/src/query/console.hpp
florijan 11eb643a5e Query - REPL fixes
Summary: Minor fixes.

Reviewers: teon.banek

Reviewed By: teon.banek

Subscribers: pullbot

Differential Revision: https://phabricator.memgraph.io/D168
2017-03-24 09:50:53 +01:00

24 lines
429 B
C++

//
// Copyright 2017 Memgraph
// Created by Florijan Stamenkovic on 23.03.17.
//
#pragma once
#include <list>
#include "communication/result_stream_faker.hpp"
#include "dbms/dbms.hpp"
namespace query {
/**
* Read Evaluate Print Loop,
* for interacting with a database
* (the active database in the given DBMS).
* Immediately starts the user-input loop
* and interprets the entered queries.
*/
void Repl(Dbms &dbms);
}