Remove header file common/names.h (#4945)
This commit is contained in:
@ -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();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user