summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorInnokentii Mokin <[email protected]>2026-07-15 20:43:46 +0400
committerGitHub <[email protected]>2026-07-15 19:43:46 +0300
commit0dbe16d1cbead4ba91ef331036a85b2de8e57c4f (patch)
treeb84cbf9add8dc1a0558499d67ef2f99b8763b8a2
parent71780100e23d93a0111fbfe7326b5a7aeaf823fd (diff)
Restore ESysViewType PG enum values (31-33) for backward compatibility (#46612)
-rw-r--r--ydb/core/protos/sys_view_types.proto5
1 files changed, 4 insertions, 1 deletions
diff --git a/ydb/core/protos/sys_view_types.proto b/ydb/core/protos/sys_view_types.proto
index 57990563cfe..ebc2f84dcaf 100644
--- a/ydb/core/protos/sys_view_types.proto
+++ b/ydb/core/protos/sys_view_types.proto
@@ -35,7 +35,10 @@ enum ESysViewType {
EAuthOwners = 28;
EAuthPermissions = 29;
EAuthEffectivePermissions = 30;
- reserved 31 to 33; // EPgTables, EInformationSchemaTables, EPgClass (removed)
+ // Kept for backward compatibility: 31-33 were persisted by older versions.
+ EPgTables = 31;
+ EInformationSchemaTables = 32;
+ EPgClass = 33;
EShowCreate = 34;
ECompileCacheQueries = 35;
EStorePrimaryIndexStats = 36;