pub async fn compute_table_checksum(
client: &Client,
schema: &str,
table: &str,
) -> Result<(String, i64)>Expand description
Compute checksum for a table
This generates an MD5 checksum of all data in the table by:
- Querying all columns in the table
- Concatenating all column values for each row
- Ordering by all columns for deterministic results
- Computing MD5 hash of the aggregated data