fixing pane in client for accounting + debug optimizations to run

This commit is contained in:
Priec
2026-08-14 07:45:36 +02:00
parent b2f141ccba
commit 85602159f4
10 changed files with 55 additions and 4 deletions

View File

@@ -165,6 +165,9 @@ message PostTableDataResponse {
// Revision committed for the inserted row.
int64 row_revision = 4;
// Journal created or updated by automatic accounting, when applicable.
optional int64 journal_id = 5;
}
// One row in a bulk insert request.
@@ -251,6 +254,9 @@ message PutTableDataResponse {
// Revision committed for the updated row.
int64 row_revision = 4;
// Journal updated by automatic accounting, when applicable.
optional int64 journal_id = 5;
}
message TableUpdateImpactRequest {

Binary file not shown.

View File

@@ -72,6 +72,9 @@ pub struct PostTableDataResponse {
/// Revision committed for the inserted row.
#[prost(int64, tag = "4")]
pub row_revision: i64,
/// Journal created or updated by automatic accounting, when applicable.
#[prost(int64, optional, tag = "5")]
pub journal_id: ::core::option::Option<i64>,
}
/// One row in a bulk insert request.
#[derive(Clone, PartialEq, ::prost::Message)]
@@ -181,6 +184,9 @@ pub struct PutTableDataResponse {
/// Revision committed for the updated row.
#[prost(int64, tag = "4")]
pub row_revision: i64,
/// Journal updated by automatic accounting, when applicable.
#[prost(int64, optional, tag = "5")]
pub journal_id: ::core::option::Option<i64>,
}
#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)]
pub struct TableUpdateImpactRequest {