put table definition2 - name change

This commit is contained in:
Filipriec
2026-08-24 09:58:49 +02:00
parent 5d6f53c96e
commit 77e409dce6
11 changed files with 51 additions and 7 deletions

View File

@@ -224,6 +224,10 @@ message PutTableDefinitionRequest {
// Revision returned by GetProfileDetails. Prevents a stale editor from
// overwriting a newer structural or presentation change.
int64 expected_row_version = 7;
// New physical/catalog name. Empty, or equal to table_name, keeps the
// current name for backwards-compatible callers.
string new_table_name = 8;
}
message PutTableDefinitionResponse {

Binary file not shown.

View File

@@ -188,6 +188,10 @@ pub struct PutTableDefinitionRequest {
/// overwriting a newer structural or presentation change.
#[prost(int64, tag = "7")]
pub expected_row_version: i64,
/// New physical/catalog name. Empty, or equal to table_name, keeps the
/// current name for backwards-compatible callers.
#[prost(string, tag = "8")]
pub new_table_name: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)]
pub struct PutTableDefinitionResponse {