-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Description
protected TableInfo getTableInfo(TapConnectionContext tapConnectorContext, String tableName) {
DataMap dataMap = this.postgresJdbcContext.getTableInfo(tableName);
TableInfo tableInfo = TableInfo.create();
tableInfo.setNumOfRows(Long.valueOf(dataMap.getString("size")));
tableInfo.setStorageSize((new BigDecimal(dataMap.getString("rowcount"))).longValue());
return tableInfo;
}
行信息存的是size
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels