(
&self,
account_id: &str,
input: DescribeTableInput,
)
| 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 |