global profile comes from server now only

This commit is contained in:
Priec
2026-08-17 11:05:16 +02:00
parent 9b1e592ecd
commit efd9e2481b
9 changed files with 33 additions and 11 deletions

View File

@@ -308,11 +308,18 @@ message ProfileTreeResponse {
// All profiles in the system.
repeated Profile profiles = 1;
// The profile holding the tables every profile shares. Callers browse this
// one when the user has not chosen a profile, so the name is reported here
// rather than being known in advance.
string shared_profile_name = 2;
}
message GetTableCatalogRequest {
// Selected profile. Omit this field to request the global-only scope.
optional string profile_name = 1;
// Profile whose tables to list, together with the shared tables every
// profile sees. The profile holding the shared tables is named like any
// other, and asking for it lists exactly those.
string profile_name = 1;
}
message GetTableCatalogResponse {