(self, col)
| 216 | return '%s.%s' % (collection_col.owner.identifier, collection_col.name) |
| 217 | |
| 218 | def _write_column(self, col): |
| 219 | if isinstance(col.owner, StructColumn): |
| 220 | return '%s.%s' % (self._write(col.owner), col.name) |
| 221 | return '%s.%s' % (col.owner.identifier, col.name) |
| 222 | |
| 223 | def _write_from_clause(self, from_clause): |
| 224 | sql = 'FROM %s' % self._write(from_clause.table_expr) |