[improvement](external catalog)Change log level to debug for getRowCountFromExternalSource. (#28801)

This commit is contained in:
Jibing-Li
2023-12-21 22:09:50 +08:00
committed by GitHub
parent 65e3da255f
commit c1457f97a4

View File

@ -301,7 +301,7 @@ public class HMSExternalTable extends ExternalTable {
rowCount = StatisticsUtil.getIcebergRowCount(this);
break;
default:
LOG.warn("getRowCount for dlaType {} is not supported.", dlaType);
LOG.debug("getRowCount for dlaType {} is not supported.", dlaType);
rowCount = -1;
}
return rowCount;