criteria progress
This commit is contained in:
@@ -134,13 +134,13 @@ const std::vector<table_column> &query_select_part::columns() const {
|
||||
return columns_;
|
||||
}
|
||||
|
||||
query_from_part::query_from_part(class table tab)
|
||||
query_from_part::query_from_part(std::vector<table> tables)
|
||||
: query_part(sql::dialect_token::From)
|
||||
, table_(std::move(tab)) {
|
||||
, tables_(std::move(tables)) {
|
||||
}
|
||||
|
||||
const table &query_from_part::table() const {
|
||||
return table_;
|
||||
const std::vector<table> &query_from_part::tables() const {
|
||||
return tables_;
|
||||
}
|
||||
|
||||
void query_from_part::accept(query_part_visitor &visitor) {
|
||||
|
||||
Reference in New Issue
Block a user