File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ function Overview(props: OverviewProps) {
9595 } , [ autorefresh ] ) ;
9696
9797 const tableSchema =
98- currentItem ?. PathDescription ?. Table || currentItem ?. PathDescription ?. OlapTableDescription ;
98+ currentItem ?. PathDescription ?. Table || currentItem ?. PathDescription ?. ColumnTableDescription ;
9999
100100 const schemaData = useMemo ( ( ) => {
101101 return props . type === OLAP_TABLE_TYPE
Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ function ObjectSummary(props: ObjectSummaryProps) {
102102 const currentSchemaData = _ . get ( data [ currentSchemaPath ] , 'PathDescription.Self' ) ;
103103
104104 const tableSchema =
105- currentItem ?. PathDescription ?. Table || currentItem ?. PathDescription ?. OlapTableDescription ;
105+ currentItem ?. PathDescription ?. Table || currentItem ?. PathDescription ?. ColumnTableDescription ;
106106
107107 const schema =
108108 props . type === OLAP_TABLE_TYPE ? prepareOlapTableSchema ( tableSchema ) : tableSchema ;
Original file line number Diff line number Diff line change @@ -28,8 +28,8 @@ import './Tenant.scss';
2828const b = cn ( 'tenant-page' ) ;
2929
3030export const TABLE_TYPE = 'Table' ;
31- export const OLAP_TABLE_TYPE = 'OlapTable ' ;
32- export const OLAP_STORE_TYPE = 'OlapStore ' ;
31+ export const OLAP_TABLE_TYPE = 'ColumnTable ' ;
32+ export const OLAP_STORE_TYPE = 'ColumnStore ' ;
3333
3434export function calcEntityType ( currentPathType ?: string ) {
3535 return currentPathType && currentPathType . replace ( 'EPathType' , '' ) ;
You can’t perform that action at this time.
0 commit comments