column names are now getting full display name optionality
This commit is contained in:
@@ -292,13 +292,12 @@ enum MoneyRounding {
|
||||
|
||||
// Describes one user-defined column for a table.
|
||||
message ColumnDefinition {
|
||||
// Must be lowercase, start with a letter, and use only lowercase letters,
|
||||
// digits and underscores.
|
||||
//
|
||||
// Cannot be "id", "deleted", "created_at" or "row_revision": those are
|
||||
// system columns, and a data request names system and user columns in one
|
||||
// namespace. Any other name is free, including one ending in "_id" -- no
|
||||
// column name is derived from a table name, so nothing collides.
|
||||
// Public display name for this column; the physical column uses a stable
|
||||
// server-assigned ordinal name. Preserved exactly for display. It may contain
|
||||
// Unicode letters, numbers, spaces, punctuation and symbols, but not
|
||||
// leading/trailing whitespace or control characters, and is limited to 63
|
||||
// UTF-8 bytes. Its canonical form must be unique within the table and cannot
|
||||
// claim a reserved system-column name.
|
||||
string name = 1;
|
||||
|
||||
// Logical column type. Supported values (case-insensitive):
|
||||
|
||||
Reference in New Issue
Block a user