initial matador ng commit
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
#ifndef QUERY_INSERT_INTERMEDIATE_HPP
|
||||
#define QUERY_INSERT_INTERMEDIATE_HPP
|
||||
|
||||
#include "matador/query/intermediates/query_intermediate.hpp"
|
||||
|
||||
namespace matador::query {
|
||||
|
||||
class query_into_intermediate;
|
||||
|
||||
class query_insert_intermediate : public query_intermediate
|
||||
{
|
||||
public:
|
||||
query_insert_intermediate();
|
||||
|
||||
// template<class Type>
|
||||
// query_into_intermediate into(const sql::table &table, const sql::schema &schema) {
|
||||
// return into(table, column_generator::generate<Type>(schema));
|
||||
// }
|
||||
query_into_intermediate into(const sql::table &table, std::initializer_list<sql::column> columns);
|
||||
query_into_intermediate into(const sql::table &table, std::vector<sql::column> &&columns);
|
||||
query_into_intermediate into(const sql::table &table, const std::vector<std::string> &column_names);
|
||||
query_into_intermediate into(const sql::table &table);
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif //QUERY_INSERT_INTERMEDIATE_HPP
|
||||
Reference in New Issue
Block a user