[enhancement](log) remove some temp debug log (#25809)
* [enhancement](log) remove some temp debug log * update
This commit is contained in:
@ -416,11 +416,6 @@ Status OlapTableBlockConvertor::_validate_data(RuntimeState* state, vectorized::
|
||||
bool* stop_processing) {
|
||||
for (int i = 0; i < _output_tuple_desc->slots().size(); ++i) {
|
||||
SlotDescriptor* desc = _output_tuple_desc->slots()[i];
|
||||
DCHECK(block->columns() > i)
|
||||
<< "DEBUG LOG: block->columns(): " << block->columns() << " i: " << i
|
||||
<< " block structure: \n"
|
||||
<< block->dump_structure()
|
||||
<< " \n_output_tuple_desc: " << _output_tuple_desc->debug_string();
|
||||
block->get_by_position(i).column =
|
||||
block->get_by_position(i).column->convert_to_full_column_if_const();
|
||||
const auto& column = block->get_by_position(i).column;
|
||||
|
||||
@ -420,7 +420,7 @@ public class OlapTable extends Table {
|
||||
// Column maybe renamed, rebuild the column name map
|
||||
indexMeta.initColumnNameMap();
|
||||
}
|
||||
LOG.info("after rebuild full schema. table {}, schema size: {}", id, fullSchema.size());
|
||||
LOG.debug("after rebuild full schema. table {}, schema size: {}", id, fullSchema.size());
|
||||
}
|
||||
|
||||
public boolean deleteIndexInfo(String indexName) {
|
||||
|
||||
Reference in New Issue
Block a user