diff options
author | xenoxeno <xeno@ydb.tech> | 2023-04-04 09:17:51 +0300 |
---|---|---|
committer | xenoxeno <xeno@ydb.tech> | 2023-04-04 09:17:51 +0300 |
commit | 268a9f9f89710a2c3272b1e61641b86c505c56f5 (patch) | |
tree | 02e22ef663a866cc5d13d0b56633a5e42a74bee2 | |
parent | d332a860c0bf1820f449964d1e0f01731aa15d63 (diff) | |
download | ydb-268a9f9f89710a2c3272b1e61641b86c505c56f5.tar.gz |
fix schema navigate for tablet information
-rw-r--r-- | ydb/core/viewer/json_compute.h | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/ydb/core/viewer/json_compute.h b/ydb/core/viewer/json_compute.h index 6831d6e2af2..50bb45df70c 100644 --- a/ydb/core/viewer/json_compute.h +++ b/ydb/core/viewer/json_compute.h @@ -200,16 +200,12 @@ public: ui64 pathId = 0; if (!Path.empty() && result.Self) { switch (result.Self->Info.GetPathType()) { - case NKikimrSchemeOp::EPathTypeTable: - case NKikimrSchemeOp::EPathTypePersQueueGroup: - case NKikimrSchemeOp::EPathTypeTableIndex: - case NKikimrSchemeOp::EPathTypeColumnTable: - case NKikimrSchemeOp::EPathTypeColumnStore: - case NKikimrSchemeOp::EPathTypeCdcStream: - case NKikimrSchemeOp::EPathTypeKesus: - pathId = result.Self->Info.GetPathId(); + case NKikimrSchemeOp::EPathTypeSubDomain: + case NKikimrSchemeOp::EPathTypeExtSubDomain: + pathId = 0; break; default: + pathId = result.Self->Info.GetPathId(); break; } } |