Change log verbose level to vlog(3) (#325)

* Transform row-oriented table to columnar-oriented table

* Transform row-oriented table to columnar-oriented table

* change log verbose level
This commit is contained in:
李超勇
2018-11-16 17:17:39 +08:00
committed by chenhao
parent b946f20e37
commit fec3c58655

View File

@ -702,8 +702,8 @@ Status OlapScanNode::normalize_in_predicate(SlotDescriptor* slot, ColumnValueRan
// 1.2 Skip if InPredicate value size larger then max_scan_key_num
if (pred->hybird_set()->size() > config::doris_max_scan_key_num) {
LOG(WARNING) << "Predicate value num " << pred->hybird_set()->size()
<< " excede limit " << config::doris_max_scan_key_num;
VLOG(3) << "Predicate value num " << pred->hybird_set()->size()
<< " excede limit " << config::doris_max_scan_key_num;
continue;
}