pub fn delete_for(engine: &Engine, table_name: &str) -> Result<bool, McpError>Expand description
Delete the catalog row (if any) for table_name. Called when a table
is dropped. Idempotent — no error if the row doesn’t exist.
§Errors
Propagates any error from table_present or from the DELETE
statement against the catalog table.