(self, memo)
| 559 | return self.alias or self.with_clause_alias |
| 560 | |
| 561 | def __deepcopy__(self, memo): |
| 562 | other = WithClauseInlineView(deepcopy(self.query, memo), self.with_clause_alias) |
| 563 | other.alias = self.alias |
| 564 | return other |
| 565 | |
| 566 | |
| 567 | class JoinClause(object): |
nothing calls this directly
no test coverage detected