aliasing of account fields

This commit is contained in:
Priec
2026-08-12 20:17:57 +02:00
parent f8a333e540
commit 49323b58d6
7 changed files with 39 additions and 13 deletions

View File

@@ -353,6 +353,9 @@ message ColumnBehavior {
// Logical source column name, empty for ordinary user-defined columns.
string generated_from = 3;
// True when clients may offer this column in an alias rename picker.
bool renameable = 4;
}
// A script that targets a specific column in a table.

Binary file not shown.

View File

@@ -363,6 +363,9 @@ pub struct ColumnBehavior {
/// Logical source column name, empty for ordinary user-defined columns.
#[prost(string, tag = "3")]
pub generated_from: ::prost::alloc::string::String,
/// True when clients may offer this column in an alias rename picker.
#[prost(bool, tag = "4")]
pub renameable: bool,
}
/// A script that targets a specific column in a table.
#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)]