legacy removed
This commit is contained in:
@@ -55,9 +55,6 @@ service TableDefinition {
|
||||
// Copies one complete profile into a new profile without copying table data.
|
||||
rpc CopyProfile(CopyProfileRequest) returns (CopyProfileResponse);
|
||||
|
||||
// Returns the stored rename history for column aliases in one profile.
|
||||
rpc GetColumnAliasRenameHistory(GetColumnAliasRenameHistoryRequest) returns (GetColumnAliasRenameHistoryResponse);
|
||||
|
||||
// Returns the unified append-only history for column and option aliases.
|
||||
rpc GetAliasChangeHistory(GetAliasChangeHistoryRequest) returns (GetAliasChangeHistoryResponse);
|
||||
|
||||
@@ -463,31 +460,6 @@ message CopyProfileResponse {
|
||||
int32 scripts_copied = 4;
|
||||
}
|
||||
|
||||
// Request to fetch recorded column alias rename history for one profile.
|
||||
message GetColumnAliasRenameHistoryRequest {
|
||||
string profile_name = 1;
|
||||
|
||||
// Filter. When omitted, returns all tables in the profile.
|
||||
optional int64 table_definition_id = 2;
|
||||
}
|
||||
|
||||
// One recorded column alias rename.
|
||||
message ColumnAliasRenameHistoryEntry {
|
||||
int64 id = 1;
|
||||
string profile_name = 2;
|
||||
int64 table_definition_id = 3;
|
||||
string table_name = 4;
|
||||
string old_column_name = 5;
|
||||
string new_column_name = 6;
|
||||
string created_at = 7;
|
||||
}
|
||||
|
||||
// Response with stored column alias rename history rows.
|
||||
message GetColumnAliasRenameHistoryResponse {
|
||||
string profile_name = 1;
|
||||
repeated ColumnAliasRenameHistoryEntry entries = 2;
|
||||
}
|
||||
|
||||
enum AliasChangeKind {
|
||||
ALIAS_CHANGE_KIND_UNSPECIFIED = 0;
|
||||
ALIAS_CHANGE_KIND_COLUMN = 1;
|
||||
|
||||
Reference in New Issue
Block a user