(
self, *, target_table: Optional[Table] = None, **kw: Any
)
| 6055 | return self._copy(target_table=target_table, **kw) |
| 6056 | |
| 6057 | def _copy( |
| 6058 | self, *, target_table: Optional[Table] = None, **kw: Any |
| 6059 | ) -> Computed: |
| 6060 | sqltext = _copy_expression( |
| 6061 | self.sqltext, |
| 6062 | self.column.table if self.column is not None else None, |
| 6063 | target_table, |
| 6064 | ) |
| 6065 | g = Computed(sqltext, persisted=self.persisted) |
| 6066 | |
| 6067 | return self._schema_item_copy(g) |
| 6068 | |
| 6069 | |
| 6070 | class Identity(IdentityOptions, FetchedValue, SchemaItem): |
no test coverage detected