Files
memgraph/src/query/console.hpp
florijan f304dfef28 Query Console implemented
Summary: buda, teon.banek, mislav.bradac

Reviewers: mislav.bradac, buda, teon.banek

Reviewed By: buda

Subscribers: pullbot

Differential Revision: https://phabricator.memgraph.io/D163
2017-03-23 15:51:25 +01:00

23 lines
411 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 {
/**
* Console for interacting with a database
* (the active database in the given DBMS).
* Immediately starts the user-input loop
* and interprets the entered queries.
*/
void Console(Dbms &dbms);
}