#ifndef QUERY_QUERY_CONTEXT_HPP #define QUERY_QUERY_CONTEXT_HPP #include "matador/sql/column_definition.hpp" #include "matador/sql/table.hpp" namespace matador::sql { struct query_context { std::string sql; std::string command_name; sql::table table{""}; std::vector prototype; std::vector result_vars; std::vector bind_vars; }; } #endif //QUERY_QUERY_CONTEXT_HPP