accounts are strings in the client side2

This commit is contained in:
Priec
2026-08-08 20:37:37 +02:00
parent a7b8d2021a
commit 49f5ff6505
4 changed files with 7 additions and 3 deletions

View File

@@ -102,7 +102,8 @@ message PostTableDataRequest {
// - System/FK columns: // - System/FK columns:
// • "deleted" (BOOLEAN), optional; default FALSE if not provided // • "deleted" (BOOLEAN), optional; default FALSE if not provided
// • one BIGINT per link, named by whoever declared it // • one BIGINT per link, named by whoever declared it
// • "account" (slash-delimited account string) on ACCOUNTING-enabled tables // • "account" (required, non-null slash-delimited account string) on
// ACCOUNTING-enabled tables
// //
// Type expectations by SQL type: // Type expectations by SQL type:
// - TEXT: string value; empty string is treated as NULL // - TEXT: string value; empty string is treated as NULL
@@ -182,6 +183,7 @@ message PutTableDataRequest {
int64 id = 3; int64 id = 3;
// Required. Columns to update (same typing rules as PostTableDataRequest.data). // Required. Columns to update (same typing rules as PostTableDataRequest.data).
// "account" may be omitted, but cannot be null when supplied.
// //
// Special script rules: // Special script rules:
// - If a script targets column X and X is included here, the value for X must // - If a script targets column X and X is included here, the value for X must

Binary file not shown.

View File

@@ -18,7 +18,8 @@ pub struct PostTableDataRequest {
/// * System/FK columns: /// * System/FK columns:
/// • "deleted" (BOOLEAN), optional; default FALSE if not provided /// • "deleted" (BOOLEAN), optional; default FALSE if not provided
/// • one BIGINT per link, named by whoever declared it /// • one BIGINT per link, named by whoever declared it
/// • "account" (slash-delimited account string) on ACCOUNTING-enabled tables /// • "account" (required, non-null slash-delimited account string) on
/// ACCOUNTING-enabled tables
/// ///
/// Type expectations by SQL type: /// Type expectations by SQL type:
/// ///
@@ -112,6 +113,7 @@ pub struct PutTableDataRequest {
#[prost(int64, tag = "3")] #[prost(int64, tag = "3")]
pub id: i64, pub id: i64,
/// Required. Columns to update (same typing rules as PostTableDataRequest.data). /// Required. Columns to update (same typing rules as PostTableDataRequest.data).
/// "account" may be omitted, but cannot be null when supplied.
/// ///
/// Special script rules: /// Special script rules:
/// ///

2
server

Submodule server updated: d29f130523...2e4342dbf4