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) {
95
95
} , [ autorefresh ] ) ;
96
96
97
97
const tableSchema =
98
- currentItem ?. PathDescription ?. Table || currentItem ?. PathDescription ?. OlapTableDescription ;
98
+ currentItem ?. PathDescription ?. Table || currentItem ?. PathDescription ?. ColumnTableDescription ;
99
99
100
100
const schemaData = useMemo ( ( ) => {
101
101
return props . type === OLAP_TABLE_TYPE
Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ function ObjectSummary(props: ObjectSummaryProps) {
102
102
const currentSchemaData = _ . get ( data [ currentSchemaPath ] , 'PathDescription.Self' ) ;
103
103
104
104
const tableSchema =
105
- currentItem ?. PathDescription ?. Table || currentItem ?. PathDescription ?. OlapTableDescription ;
105
+ currentItem ?. PathDescription ?. Table || currentItem ?. PathDescription ?. ColumnTableDescription ;
106
106
107
107
const schema =
108
108
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';
28
28
const b = cn ( 'tenant-page' ) ;
29
29
30
30
export 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 ' ;
33
33
34
34
export function calcEntityType ( currentPathType ?: string ) {
35
35
return currentPathType && currentPathType . replace ( 'EPathType' , '' ) ;
You can’t perform that action at this time.
0 commit comments