MCPcopy Create free account
hub / github.com/ExtendDB/extenddb / describe_table

Method describe_table

crates/storage-postgres/src/table_engine.rs:39–49  ·  view source on GitHub ↗
(
        &self,
        account_id: &str,
        input: DescribeTableInput,
    )

Source from the content-addressed store, hash-verified

37 }
38
39 fn describe_table(
40 &self,
41 account_id: &str,
42 input: DescribeTableInput,
43 ) -> BoxFuture<'_, Result<TableDescription, StorageError>> {
44 let account_id = account_id.to_string();
45 Box::pin(async move {
46 self.build_table_description(&account_id, &input.table_name)
47 .await
48 })
49 }
50
51 // Fix #10: list_tables requires limit to always be Some (engine always clamps)
52 // Note: Real DynamoDB includes tables in CREATING and DELETING states in

Calls 1