| 94 | } |
| 95 | |
| 96 | void QueryResult::setColumnTypes(std::vector<LogicalType> columnTypes) { |
| 97 | this->columnTypes = std::move(columnTypes); |
| 98 | tuple = std::make_shared<FlatTuple>(this->columnTypes); |
| 99 | } |
| 100 | |
| 101 | void QueryResult::addNextResult(std::unique_ptr<QueryResult> next_) { |
| 102 | nextQueryResult = std::move(next_); |