moving towards upgraded crates
This commit is contained in:
@@ -13,29 +13,33 @@ pub struct PostTableDataRequest {
|
||||
/// Required. Key-value data for columns to insert.
|
||||
///
|
||||
/// Allowed keys:
|
||||
/// - User-defined columns from the table definition
|
||||
/// - System/FK columns:
|
||||
/// • "deleted" (BOOLEAN), optional; default FALSE if not provided
|
||||
/// • "<linked_table>_id" (BIGINT) for each table link
|
||||
///
|
||||
/// * User-defined columns from the table definition
|
||||
/// * System/FK columns:
|
||||
/// • "deleted" (BOOLEAN), optional; default FALSE if not provided
|
||||
/// • "\<linked_table>\_id" (BIGINT) for each table link
|
||||
///
|
||||
/// Type expectations by SQL type:
|
||||
/// - TEXT: string value; empty string is treated as NULL
|
||||
/// - BOOLEAN: bool value
|
||||
/// - TIMESTAMPTZ: ISO 8601/RFC 3339 string (parsed to TIMESTAMPTZ)
|
||||
/// - INTEGER: number with no fractional part and within i32 range
|
||||
/// - BIGINT: number with no fractional part and within i64 range
|
||||
/// - NUMERIC(p,s): string representation only; empty string becomes NULL
|
||||
/// (numbers for NUMERIC are rejected to avoid precision loss)
|
||||
///
|
||||
/// * TEXT: string value; empty string is treated as NULL
|
||||
/// * BOOLEAN: bool value
|
||||
/// * TIMESTAMPTZ: ISO 8601/RFC 3339 string (parsed to TIMESTAMPTZ)
|
||||
/// * INTEGER: number with no fractional part and within i32 range
|
||||
/// * BIGINT: number with no fractional part and within i64 range
|
||||
/// * NUMERIC(p,s): string representation only; empty string becomes NULL
|
||||
/// (numbers for NUMERIC are rejected to avoid precision loss)
|
||||
///
|
||||
/// Script validation rules:
|
||||
/// - If a script exists for a target column, that column MUST be present here,
|
||||
/// and its provided value MUST equal the script’s computed value (type-aware
|
||||
/// comparison, e.g., decimals are compared numerically).
|
||||
///
|
||||
/// * If a script exists for a target column, that column MUST be present here,
|
||||
/// and its provided value MUST equal the script’s computed value (type-aware
|
||||
/// comparison, e.g., decimals are compared numerically).
|
||||
///
|
||||
/// Notes:
|
||||
/// - Unknown/invalid column names are rejected
|
||||
/// - Some application-specific validations may apply (e.g., max length for
|
||||
/// certain fields like "telefon")
|
||||
///
|
||||
/// * Unknown/invalid column names are rejected
|
||||
/// * Some application-specific validations may apply (e.g., max length for
|
||||
/// certain fields like "telefon")
|
||||
#[prost(map = "string, message", tag = "3")]
|
||||
pub data: ::std::collections::HashMap<
|
||||
::prost::alloc::string::String,
|
||||
@@ -43,7 +47,7 @@ pub struct PostTableDataRequest {
|
||||
>,
|
||||
}
|
||||
/// Insert response.
|
||||
#[derive(Clone, PartialEq, ::prost::Message)]
|
||||
#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)]
|
||||
pub struct PostTableDataResponse {
|
||||
/// True if the insert succeeded.
|
||||
#[prost(bool, tag = "1")]
|
||||
@@ -106,11 +110,12 @@ pub struct PutTableDataRequest {
|
||||
/// Required. Columns to update (same typing rules as PostTableDataRequest.data).
|
||||
///
|
||||
/// Special script rules:
|
||||
/// - If a script targets column X and X is included here, the value for X must
|
||||
/// equal the script’s result (type-aware).
|
||||
/// - If X is not included here but the update would cause the script’s result
|
||||
/// to change compared to the current stored value, the update is rejected with
|
||||
/// FAILED_PRECONDITION, instructing the caller to include X explicitly.
|
||||
///
|
||||
/// * If a script targets column X and X is included here, the value for X must
|
||||
/// equal the script’s result (type-aware).
|
||||
/// * If X is not included here but the update would cause the script’s result
|
||||
/// to change compared to the current stored value, the update is rejected with
|
||||
/// FAILED_PRECONDITION, instructing the caller to include X explicitly.
|
||||
///
|
||||
/// Passing an empty map results in a no-op success response.
|
||||
#[prost(map = "string, message", tag = "4")]
|
||||
@@ -120,7 +125,7 @@ pub struct PutTableDataRequest {
|
||||
>,
|
||||
}
|
||||
/// Update response.
|
||||
#[derive(Clone, PartialEq, ::prost::Message)]
|
||||
#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)]
|
||||
pub struct PutTableDataResponse {
|
||||
/// True if the update succeeded (or no-op on empty data).
|
||||
#[prost(bool, tag = "1")]
|
||||
@@ -133,7 +138,7 @@ pub struct PutTableDataResponse {
|
||||
pub updated_id: i64,
|
||||
}
|
||||
/// Soft-delete a single row.
|
||||
#[derive(Clone, PartialEq, ::prost::Message)]
|
||||
#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)]
|
||||
pub struct DeleteTableDataRequest {
|
||||
/// Required. Profile (schema) name.
|
||||
#[prost(string, tag = "1")]
|
||||
@@ -146,14 +151,14 @@ pub struct DeleteTableDataRequest {
|
||||
pub record_id: i64,
|
||||
}
|
||||
/// Soft-delete response.
|
||||
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
|
||||
#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)]
|
||||
pub struct DeleteTableDataResponse {
|
||||
/// True if a row was marked deleted (id existed and was not already deleted).
|
||||
#[prost(bool, tag = "1")]
|
||||
pub success: bool,
|
||||
}
|
||||
/// Fetch a single non-deleted row by id.
|
||||
#[derive(Clone, PartialEq, ::prost::Message)]
|
||||
#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)]
|
||||
pub struct GetTableDataRequest {
|
||||
/// Required. Profile (schema) name.
|
||||
#[prost(string, tag = "1")]
|
||||
@@ -169,9 +174,10 @@ pub struct GetTableDataRequest {
|
||||
#[derive(Clone, PartialEq, ::prost::Message)]
|
||||
pub struct GetTableDataResponse {
|
||||
/// Map of column_name → stringified value for:
|
||||
/// - id, deleted
|
||||
/// - all user-defined columns from the table definition
|
||||
/// - FK columns named "<linked_table>_id" for each table link
|
||||
///
|
||||
/// * id, deleted
|
||||
/// * all user-defined columns from the table definition
|
||||
/// * FK columns named "\<linked_table>\_id" for each table link
|
||||
///
|
||||
/// All values are returned as TEXT via col::TEXT and COALESCEed to empty string
|
||||
/// (NULL becomes ""). The row is returned only if deleted = FALSE.
|
||||
@@ -182,7 +188,7 @@ pub struct GetTableDataResponse {
|
||||
>,
|
||||
}
|
||||
/// Count non-deleted rows.
|
||||
#[derive(Clone, PartialEq, ::prost::Message)]
|
||||
#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)]
|
||||
pub struct GetTableDataCountRequest {
|
||||
/// Required. Profile (schema) name.
|
||||
#[prost(string, tag = "1")]
|
||||
@@ -192,7 +198,7 @@ pub struct GetTableDataCountRequest {
|
||||
pub table_name: ::prost::alloc::string::String,
|
||||
}
|
||||
/// Fetch by ordinal position among non-deleted rows (1-based).
|
||||
#[derive(Clone, PartialEq, ::prost::Message)]
|
||||
#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)]
|
||||
pub struct GetTableDataByPositionRequest {
|
||||
/// Required. Profile (schema) name.
|
||||
#[prost(string, tag = "1")]
|
||||
@@ -303,13 +309,14 @@ pub mod tables_data_client {
|
||||
/// Insert a new row into a table with strict type binding and script validation.
|
||||
///
|
||||
/// Behavior:
|
||||
/// - Validates that profile (schema) exists and table is defined for it
|
||||
/// - Validates provided columns exist (user-defined or allowed system/FK columns)
|
||||
/// - For columns targeted by scripts in this table, the client MUST provide the
|
||||
/// value, and it MUST equal the script’s calculated value (compared type-safely)
|
||||
/// - Binds values with correct SQL types, rejects invalid formats/ranges
|
||||
/// - Inserts the row and returns the new id; queues search indexing (best effort)
|
||||
/// - If the physical table is missing but the definition exists, returns INTERNAL
|
||||
///
|
||||
/// * Validates that profile (schema) exists and table is defined for it
|
||||
/// * Validates provided columns exist (user-defined or allowed system/FK columns)
|
||||
/// * For columns targeted by scripts in this table, the client MUST provide the
|
||||
/// value, and it MUST equal the script’s calculated value (compared type-safely)
|
||||
/// * Binds values with correct SQL types, rejects invalid formats/ranges
|
||||
/// * Inserts the row and returns the new id; queues search indexing (best effort)
|
||||
/// * If the physical table is missing but the definition exists, returns INTERNAL
|
||||
pub async fn post_table_data(
|
||||
&mut self,
|
||||
request: impl tonic::IntoRequest<super::PostTableDataRequest>,
|
||||
@@ -325,7 +332,7 @@ pub mod tables_data_client {
|
||||
format!("Service was not ready: {}", e.into()),
|
||||
)
|
||||
})?;
|
||||
let codec = tonic::codec::ProstCodec::default();
|
||||
let codec = tonic_prost::ProstCodec::default();
|
||||
let path = http::uri::PathAndQuery::from_static(
|
||||
"/komp_ac.tables_data.TablesData/PostTableData",
|
||||
);
|
||||
@@ -339,12 +346,13 @@ pub mod tables_data_client {
|
||||
/// Insert multiple rows by applying PostTableData behavior to each row.
|
||||
///
|
||||
/// Behavior:
|
||||
/// - Accepts 1..10,000 rows in one gRPC request
|
||||
/// - Processes rows in request order
|
||||
/// - Each row is inserted through the same validation, script execution,
|
||||
/// typed binding, database insert, and indexing path as PostTableData
|
||||
/// - Stops at the first failing row and returns that row's gRPC error code
|
||||
/// with row index context; rows inserted before the failure remain inserted
|
||||
///
|
||||
/// * Accepts 1..10,000 rows in one gRPC request
|
||||
/// * Processes rows in request order
|
||||
/// * Each row is inserted through the same validation, script execution,
|
||||
/// typed binding, database insert, and indexing path as PostTableData
|
||||
/// * Stops at the first failing row and returns that row's gRPC error code
|
||||
/// with row index context; rows inserted before the failure remain inserted
|
||||
pub async fn post_table_data_bulk(
|
||||
&mut self,
|
||||
request: impl tonic::IntoRequest<super::PostTableDataBulkRequest>,
|
||||
@@ -360,7 +368,7 @@ pub mod tables_data_client {
|
||||
format!("Service was not ready: {}", e.into()),
|
||||
)
|
||||
})?;
|
||||
let codec = tonic::codec::ProstCodec::default();
|
||||
let codec = tonic_prost::ProstCodec::default();
|
||||
let path = http::uri::PathAndQuery::from_static(
|
||||
"/komp_ac.tables_data.TablesData/PostTableDataBulk",
|
||||
);
|
||||
@@ -377,14 +385,15 @@ pub mod tables_data_client {
|
||||
/// Update existing row data with strict type binding and script validation.
|
||||
///
|
||||
/// Behavior:
|
||||
/// - Validates profile and table, and that the record exists
|
||||
/// - If request data is empty, returns success without changing the row
|
||||
/// - For columns targeted by scripts:
|
||||
/// • If included in update, provided value must equal the script result
|
||||
/// • If not included, update must not cause the script result to differ
|
||||
/// from the current stored value; otherwise FAILED_PRECONDITION is returned
|
||||
/// - Binds values with correct SQL types; rejects invalid formats/ranges
|
||||
/// - Updates the row and returns the id; queues search indexing (best effort)
|
||||
///
|
||||
/// * Validates profile and table, and that the record exists
|
||||
/// * If request data is empty, returns success without changing the row
|
||||
/// * For columns targeted by scripts:
|
||||
/// • If included in update, provided value must equal the script result
|
||||
/// • If not included, update must not cause the script result to differ
|
||||
/// from the current stored value; otherwise FAILED_PRECONDITION is returned
|
||||
/// * Binds values with correct SQL types; rejects invalid formats/ranges
|
||||
/// * Updates the row and returns the id; queues search indexing (best effort)
|
||||
pub async fn put_table_data(
|
||||
&mut self,
|
||||
request: impl tonic::IntoRequest<super::PutTableDataRequest>,
|
||||
@@ -400,7 +409,7 @@ pub mod tables_data_client {
|
||||
format!("Service was not ready: {}", e.into()),
|
||||
)
|
||||
})?;
|
||||
let codec = tonic::codec::ProstCodec::default();
|
||||
let codec = tonic_prost::ProstCodec::default();
|
||||
let path = http::uri::PathAndQuery::from_static(
|
||||
"/komp_ac.tables_data.TablesData/PutTableData",
|
||||
);
|
||||
@@ -414,10 +423,11 @@ pub mod tables_data_client {
|
||||
/// Soft-delete a single record (sets deleted = true) if it exists and is not already deleted.
|
||||
///
|
||||
/// Behavior:
|
||||
/// - Validates profile and table definition
|
||||
/// - Updates only rows with deleted = false
|
||||
/// - success = true means a row was actually changed; false means nothing to delete
|
||||
/// - If the physical table is missing but the definition exists, returns INTERNAL
|
||||
///
|
||||
/// * Validates profile and table definition
|
||||
/// * Updates only rows with deleted = false
|
||||
/// * success = true means a row was actually changed; false means nothing to delete
|
||||
/// * If the physical table is missing but the definition exists, returns INTERNAL
|
||||
pub async fn delete_table_data(
|
||||
&mut self,
|
||||
request: impl tonic::IntoRequest<super::DeleteTableDataRequest>,
|
||||
@@ -433,7 +443,7 @@ pub mod tables_data_client {
|
||||
format!("Service was not ready: {}", e.into()),
|
||||
)
|
||||
})?;
|
||||
let codec = tonic::codec::ProstCodec::default();
|
||||
let codec = tonic_prost::ProstCodec::default();
|
||||
let path = http::uri::PathAndQuery::from_static(
|
||||
"/komp_ac.tables_data.TablesData/DeleteTableData",
|
||||
);
|
||||
@@ -447,12 +457,13 @@ pub mod tables_data_client {
|
||||
/// Fetch a single non-deleted row by id as textified values.
|
||||
///
|
||||
/// Behavior:
|
||||
/// - Validates profile and table definition
|
||||
/// - Returns all columns as strings (COALESCE(col::TEXT, '') AS col)
|
||||
/// including: id, deleted, all user-defined columns, and FK columns
|
||||
/// named "<linked_table>_id" for each table link
|
||||
/// - Fails with NOT_FOUND if record does not exist or is soft-deleted
|
||||
/// - If the physical table is missing but the definition exists, returns INTERNAL
|
||||
///
|
||||
/// * Validates profile and table definition
|
||||
/// * Returns all columns as strings (COALESCE(col::TEXT, '') AS col)
|
||||
/// including: id, deleted, all user-defined columns, and FK columns
|
||||
/// named "\<linked_table>\_id" for each table link
|
||||
/// * Fails with NOT_FOUND if record does not exist or is soft-deleted
|
||||
/// * If the physical table is missing but the definition exists, returns INTERNAL
|
||||
pub async fn get_table_data(
|
||||
&mut self,
|
||||
request: impl tonic::IntoRequest<super::GetTableDataRequest>,
|
||||
@@ -468,7 +479,7 @@ pub mod tables_data_client {
|
||||
format!("Service was not ready: {}", e.into()),
|
||||
)
|
||||
})?;
|
||||
let codec = tonic::codec::ProstCodec::default();
|
||||
let codec = tonic_prost::ProstCodec::default();
|
||||
let path = http::uri::PathAndQuery::from_static(
|
||||
"/komp_ac.tables_data.TablesData/GetTableData",
|
||||
);
|
||||
@@ -482,9 +493,10 @@ pub mod tables_data_client {
|
||||
/// Count non-deleted rows in a table.
|
||||
///
|
||||
/// Behavior:
|
||||
/// - Validates profile and table definition
|
||||
/// - Returns komp_ac.common.CountResponse.count with rows where deleted = FALSE
|
||||
/// - If the physical table is missing but the definition exists, returns INTERNAL
|
||||
///
|
||||
/// * Validates profile and table definition
|
||||
/// * Returns komp_ac.common.CountResponse.count with rows where deleted = FALSE
|
||||
/// * If the physical table is missing but the definition exists, returns INTERNAL
|
||||
pub async fn get_table_data_count(
|
||||
&mut self,
|
||||
request: impl tonic::IntoRequest<super::GetTableDataCountRequest>,
|
||||
@@ -500,7 +512,7 @@ pub mod tables_data_client {
|
||||
format!("Service was not ready: {}", e.into()),
|
||||
)
|
||||
})?;
|
||||
let codec = tonic::codec::ProstCodec::default();
|
||||
let codec = tonic_prost::ProstCodec::default();
|
||||
let path = http::uri::PathAndQuery::from_static(
|
||||
"/komp_ac.tables_data.TablesData/GetTableDataCount",
|
||||
);
|
||||
@@ -517,9 +529,10 @@ pub mod tables_data_client {
|
||||
/// Fetch the N-th non-deleted row by id order (1-based), then return its full data.
|
||||
///
|
||||
/// Behavior:
|
||||
/// - position is 1-based (position = 1 → first row by id ASC with deleted = FALSE)
|
||||
/// - Returns NOT_FOUND if position is out of bounds
|
||||
/// - Otherwise identical to GetTableData for the selected id
|
||||
///
|
||||
/// * position is 1-based (position = 1 → first row by id ASC with deleted = FALSE)
|
||||
/// * Returns NOT_FOUND if position is out of bounds
|
||||
/// * Otherwise identical to GetTableData for the selected id
|
||||
pub async fn get_table_data_by_position(
|
||||
&mut self,
|
||||
request: impl tonic::IntoRequest<super::GetTableDataByPositionRequest>,
|
||||
@@ -535,7 +548,7 @@ pub mod tables_data_client {
|
||||
format!("Service was not ready: {}", e.into()),
|
||||
)
|
||||
})?;
|
||||
let codec = tonic::codec::ProstCodec::default();
|
||||
let codec = tonic_prost::ProstCodec::default();
|
||||
let path = http::uri::PathAndQuery::from_static(
|
||||
"/komp_ac.tables_data.TablesData/GetTableDataByPosition",
|
||||
);
|
||||
@@ -567,13 +580,14 @@ pub mod tables_data_server {
|
||||
/// Insert a new row into a table with strict type binding and script validation.
|
||||
///
|
||||
/// Behavior:
|
||||
/// - Validates that profile (schema) exists and table is defined for it
|
||||
/// - Validates provided columns exist (user-defined or allowed system/FK columns)
|
||||
/// - For columns targeted by scripts in this table, the client MUST provide the
|
||||
/// value, and it MUST equal the script’s calculated value (compared type-safely)
|
||||
/// - Binds values with correct SQL types, rejects invalid formats/ranges
|
||||
/// - Inserts the row and returns the new id; queues search indexing (best effort)
|
||||
/// - If the physical table is missing but the definition exists, returns INTERNAL
|
||||
///
|
||||
/// * Validates that profile (schema) exists and table is defined for it
|
||||
/// * Validates provided columns exist (user-defined or allowed system/FK columns)
|
||||
/// * For columns targeted by scripts in this table, the client MUST provide the
|
||||
/// value, and it MUST equal the script’s calculated value (compared type-safely)
|
||||
/// * Binds values with correct SQL types, rejects invalid formats/ranges
|
||||
/// * Inserts the row and returns the new id; queues search indexing (best effort)
|
||||
/// * If the physical table is missing but the definition exists, returns INTERNAL
|
||||
async fn post_table_data(
|
||||
&self,
|
||||
request: tonic::Request<super::PostTableDataRequest>,
|
||||
@@ -584,12 +598,13 @@ pub mod tables_data_server {
|
||||
/// Insert multiple rows by applying PostTableData behavior to each row.
|
||||
///
|
||||
/// Behavior:
|
||||
/// - Accepts 1..10,000 rows in one gRPC request
|
||||
/// - Processes rows in request order
|
||||
/// - Each row is inserted through the same validation, script execution,
|
||||
/// typed binding, database insert, and indexing path as PostTableData
|
||||
/// - Stops at the first failing row and returns that row's gRPC error code
|
||||
/// with row index context; rows inserted before the failure remain inserted
|
||||
///
|
||||
/// * Accepts 1..10,000 rows in one gRPC request
|
||||
/// * Processes rows in request order
|
||||
/// * Each row is inserted through the same validation, script execution,
|
||||
/// typed binding, database insert, and indexing path as PostTableData
|
||||
/// * Stops at the first failing row and returns that row's gRPC error code
|
||||
/// with row index context; rows inserted before the failure remain inserted
|
||||
async fn post_table_data_bulk(
|
||||
&self,
|
||||
request: tonic::Request<super::PostTableDataBulkRequest>,
|
||||
@@ -600,14 +615,15 @@ pub mod tables_data_server {
|
||||
/// Update existing row data with strict type binding and script validation.
|
||||
///
|
||||
/// Behavior:
|
||||
/// - Validates profile and table, and that the record exists
|
||||
/// - If request data is empty, returns success without changing the row
|
||||
/// - For columns targeted by scripts:
|
||||
/// • If included in update, provided value must equal the script result
|
||||
/// • If not included, update must not cause the script result to differ
|
||||
/// from the current stored value; otherwise FAILED_PRECONDITION is returned
|
||||
/// - Binds values with correct SQL types; rejects invalid formats/ranges
|
||||
/// - Updates the row and returns the id; queues search indexing (best effort)
|
||||
///
|
||||
/// * Validates profile and table, and that the record exists
|
||||
/// * If request data is empty, returns success without changing the row
|
||||
/// * For columns targeted by scripts:
|
||||
/// • If included in update, provided value must equal the script result
|
||||
/// • If not included, update must not cause the script result to differ
|
||||
/// from the current stored value; otherwise FAILED_PRECONDITION is returned
|
||||
/// * Binds values with correct SQL types; rejects invalid formats/ranges
|
||||
/// * Updates the row and returns the id; queues search indexing (best effort)
|
||||
async fn put_table_data(
|
||||
&self,
|
||||
request: tonic::Request<super::PutTableDataRequest>,
|
||||
@@ -618,10 +634,11 @@ pub mod tables_data_server {
|
||||
/// Soft-delete a single record (sets deleted = true) if it exists and is not already deleted.
|
||||
///
|
||||
/// Behavior:
|
||||
/// - Validates profile and table definition
|
||||
/// - Updates only rows with deleted = false
|
||||
/// - success = true means a row was actually changed; false means nothing to delete
|
||||
/// - If the physical table is missing but the definition exists, returns INTERNAL
|
||||
///
|
||||
/// * Validates profile and table definition
|
||||
/// * Updates only rows with deleted = false
|
||||
/// * success = true means a row was actually changed; false means nothing to delete
|
||||
/// * If the physical table is missing but the definition exists, returns INTERNAL
|
||||
async fn delete_table_data(
|
||||
&self,
|
||||
request: tonic::Request<super::DeleteTableDataRequest>,
|
||||
@@ -632,12 +649,13 @@ pub mod tables_data_server {
|
||||
/// Fetch a single non-deleted row by id as textified values.
|
||||
///
|
||||
/// Behavior:
|
||||
/// - Validates profile and table definition
|
||||
/// - Returns all columns as strings (COALESCE(col::TEXT, '') AS col)
|
||||
/// including: id, deleted, all user-defined columns, and FK columns
|
||||
/// named "<linked_table>_id" for each table link
|
||||
/// - Fails with NOT_FOUND if record does not exist or is soft-deleted
|
||||
/// - If the physical table is missing but the definition exists, returns INTERNAL
|
||||
///
|
||||
/// * Validates profile and table definition
|
||||
/// * Returns all columns as strings (COALESCE(col::TEXT, '') AS col)
|
||||
/// including: id, deleted, all user-defined columns, and FK columns
|
||||
/// named "\<linked_table>\_id" for each table link
|
||||
/// * Fails with NOT_FOUND if record does not exist or is soft-deleted
|
||||
/// * If the physical table is missing but the definition exists, returns INTERNAL
|
||||
async fn get_table_data(
|
||||
&self,
|
||||
request: tonic::Request<super::GetTableDataRequest>,
|
||||
@@ -648,9 +666,10 @@ pub mod tables_data_server {
|
||||
/// Count non-deleted rows in a table.
|
||||
///
|
||||
/// Behavior:
|
||||
/// - Validates profile and table definition
|
||||
/// - Returns komp_ac.common.CountResponse.count with rows where deleted = FALSE
|
||||
/// - If the physical table is missing but the definition exists, returns INTERNAL
|
||||
///
|
||||
/// * Validates profile and table definition
|
||||
/// * Returns komp_ac.common.CountResponse.count with rows where deleted = FALSE
|
||||
/// * If the physical table is missing but the definition exists, returns INTERNAL
|
||||
async fn get_table_data_count(
|
||||
&self,
|
||||
request: tonic::Request<super::GetTableDataCountRequest>,
|
||||
@@ -661,9 +680,10 @@ pub mod tables_data_server {
|
||||
/// Fetch the N-th non-deleted row by id order (1-based), then return its full data.
|
||||
///
|
||||
/// Behavior:
|
||||
/// - position is 1-based (position = 1 → first row by id ASC with deleted = FALSE)
|
||||
/// - Returns NOT_FOUND if position is out of bounds
|
||||
/// - Otherwise identical to GetTableData for the selected id
|
||||
///
|
||||
/// * position is 1-based (position = 1 → first row by id ASC with deleted = FALSE)
|
||||
/// * Returns NOT_FOUND if position is out of bounds
|
||||
/// * Otherwise identical to GetTableData for the selected id
|
||||
async fn get_table_data_by_position(
|
||||
&self,
|
||||
request: tonic::Request<super::GetTableDataByPositionRequest>,
|
||||
@@ -783,7 +803,7 @@ pub mod tables_data_server {
|
||||
let inner = self.inner.clone();
|
||||
let fut = async move {
|
||||
let method = PostTableDataSvc(inner);
|
||||
let codec = tonic::codec::ProstCodec::default();
|
||||
let codec = tonic_prost::ProstCodec::default();
|
||||
let mut grpc = tonic::server::Grpc::new(codec)
|
||||
.apply_compression_config(
|
||||
accept_compression_encodings,
|
||||
@@ -829,7 +849,7 @@ pub mod tables_data_server {
|
||||
let inner = self.inner.clone();
|
||||
let fut = async move {
|
||||
let method = PostTableDataBulkSvc(inner);
|
||||
let codec = tonic::codec::ProstCodec::default();
|
||||
let codec = tonic_prost::ProstCodec::default();
|
||||
let mut grpc = tonic::server::Grpc::new(codec)
|
||||
.apply_compression_config(
|
||||
accept_compression_encodings,
|
||||
@@ -874,7 +894,7 @@ pub mod tables_data_server {
|
||||
let inner = self.inner.clone();
|
||||
let fut = async move {
|
||||
let method = PutTableDataSvc(inner);
|
||||
let codec = tonic::codec::ProstCodec::default();
|
||||
let codec = tonic_prost::ProstCodec::default();
|
||||
let mut grpc = tonic::server::Grpc::new(codec)
|
||||
.apply_compression_config(
|
||||
accept_compression_encodings,
|
||||
@@ -919,7 +939,7 @@ pub mod tables_data_server {
|
||||
let inner = self.inner.clone();
|
||||
let fut = async move {
|
||||
let method = DeleteTableDataSvc(inner);
|
||||
let codec = tonic::codec::ProstCodec::default();
|
||||
let codec = tonic_prost::ProstCodec::default();
|
||||
let mut grpc = tonic::server::Grpc::new(codec)
|
||||
.apply_compression_config(
|
||||
accept_compression_encodings,
|
||||
@@ -964,7 +984,7 @@ pub mod tables_data_server {
|
||||
let inner = self.inner.clone();
|
||||
let fut = async move {
|
||||
let method = GetTableDataSvc(inner);
|
||||
let codec = tonic::codec::ProstCodec::default();
|
||||
let codec = tonic_prost::ProstCodec::default();
|
||||
let mut grpc = tonic::server::Grpc::new(codec)
|
||||
.apply_compression_config(
|
||||
accept_compression_encodings,
|
||||
@@ -1010,7 +1030,7 @@ pub mod tables_data_server {
|
||||
let inner = self.inner.clone();
|
||||
let fut = async move {
|
||||
let method = GetTableDataCountSvc(inner);
|
||||
let codec = tonic::codec::ProstCodec::default();
|
||||
let codec = tonic_prost::ProstCodec::default();
|
||||
let mut grpc = tonic::server::Grpc::new(codec)
|
||||
.apply_compression_config(
|
||||
accept_compression_encodings,
|
||||
@@ -1059,7 +1079,7 @@ pub mod tables_data_server {
|
||||
let inner = self.inner.clone();
|
||||
let fut = async move {
|
||||
let method = GetTableDataByPositionSvc(inner);
|
||||
let codec = tonic::codec::ProstCodec::default();
|
||||
let codec = tonic_prost::ProstCodec::default();
|
||||
let mut grpc = tonic::server::Grpc::new(codec)
|
||||
.apply_compression_config(
|
||||
accept_compression_encodings,
|
||||
|
||||
Reference in New Issue
Block a user