Remove header file common/names.h (#4945)

This commit is contained in:
sduzh
2020-11-26 17:00:48 +08:00
committed by GitHub
parent 2682712349
commit 10e1e29711
136 changed files with 937 additions and 941 deletions

View File

@ -313,7 +313,7 @@ Status SchemaScanNode::close(RuntimeState* state) {
return ExecNode::close(state);
}
void SchemaScanNode::debug_string(int indentation_level, stringstream* out) const {
void SchemaScanNode::debug_string(int indentation_level, std::stringstream* out) const {
*out << string(indentation_level * 2, ' ');
*out << "SchemaScanNode(tupleid=" << _tuple_id << " table=" << _table_name;
*out << ")" << std::endl;
@ -323,7 +323,7 @@ void SchemaScanNode::debug_string(int indentation_level, stringstream* out) cons
}
}
Status SchemaScanNode::set_scan_ranges(const vector<TScanRangeParams>& scan_ranges) {
Status SchemaScanNode::set_scan_ranges(const std::vector<TScanRangeParams>& scan_ranges) {
return Status::OK();
}