提交 6f822fda authored 作者: Thomas Mueller's avatar Thomas Mueller

New column "information_schema.tables.row_count_estimate".

上级 3ca72107
...@@ -136,7 +136,8 @@ public class MetaTable extends Table { ...@@ -136,7 +136,8 @@ public class MetaTable extends Table {
"LAST_MODIFICATION BIGINT", "LAST_MODIFICATION BIGINT",
"ID INT", "ID INT",
"TYPE_NAME", "TYPE_NAME",
"TABLE_CLASS" "TABLE_CLASS",
"ROW_COUNT_ESTIMATE BIGINT"
); );
indexColumnName = "TABLE_NAME"; indexColumnName = "TABLE_NAME";
break; break;
...@@ -676,7 +677,9 @@ public class MetaTable extends Table { ...@@ -676,7 +677,9 @@ public class MetaTable extends Table {
// TYPE_NAME // TYPE_NAME
null, null,
// TABLE_CLASS // TABLE_CLASS
table.getClass().getName() table.getClass().getName(),
// ROW_COUNT_ESTIMATE
"" + table.getRowCountApproximation()
); );
} }
break; break;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论