(cls, statement: UpdateBase)
| 143 | |
| 144 | @classmethod |
| 145 | def get_entity_description(cls, statement: UpdateBase) -> Dict[str, Any]: |
| 146 | return { |
| 147 | "name": ( |
| 148 | statement.table.name |
| 149 | if is_named_from_clause(statement.table) |
| 150 | else None |
| 151 | ), |
| 152 | "table": statement.table, |
| 153 | } |
| 154 | |
| 155 | @classmethod |
| 156 | def get_returning_column_descriptions( |
nothing calls this directly
no test coverage detected