File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
store/reducers/shardsWorkload Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -19,10 +19,10 @@ export const getPathColumn: GetShardsColumn = ({schemaPath = ''}) => {
1919 name : TOP_SHARDS_COLUMNS_IDS . Path ,
2020 header : TOP_SHARDS_COLUMNS_TITLES . Path ,
2121 render : ( { row} ) => {
22- // row.Path - relative schema path
22+ // row.RelativePath - relative schema path
2323 return (
24- < LinkToSchemaObject path = { schemaPath + row . TablePath } >
25- { row . TablePath }
24+ < LinkToSchemaObject path = { schemaPath + row . RelativePath } >
25+ { row . RelativePath }
2626 </ LinkToSchemaObject >
2727 ) ;
2828 } ,
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ LIMIT 20`;
7070}
7171
7272function createShardQueryImmediate ( path : string , database : string , sortOrder ?: SortOrder [ ] ) {
73- const pathSelect = `CAST(SUBSTRING(CAST(Path AS String), ${ database . length } ) AS Utf8) AS TablePath ` ;
73+ const pathSelect = `CAST(SUBSTRING(CAST(Path AS String), ${ database . length } ) AS Utf8) AS RelativePath ` ;
7474
7575 const orderBy = prepareOrderByFromTableSort ( sortOrder ) ;
7676
You can’t perform that action at this time.
0 commit comments