Given a :class:`_expression.ColumnElement`, return the exported :class:`_expression.ColumnElement` object from the :attr:`_expression.Selectable.exported_columns` collection of this :class:`_expression.Selectable` which corresponds to that original :class:`_ex
(
self, column: KeyedColumnElement[Any], require_embedded: bool = False
)
| 335 | return util.preloaded.sql_util.ClauseAdapter(alias).traverse(self) |
| 336 | |
| 337 | def corresponding_column( |
| 338 | self, column: KeyedColumnElement[Any], require_embedded: bool = False |
| 339 | ) -> Optional[KeyedColumnElement[Any]]: |
| 340 | """Given a :class:`_expression.ColumnElement`, return the exported |
| 341 | :class:`_expression.ColumnElement` object from the |
| 342 | :attr:`_expression.Selectable.exported_columns` |
| 343 | collection of this :class:`_expression.Selectable` |
| 344 | which corresponds to that |
| 345 | original :class:`_expression.ColumnElement` via a common ancestor |
| 346 | column. |
| 347 | |
| 348 | :param column: the target :class:`_expression.ColumnElement` |
| 349 | to be matched. |
| 350 | |
| 351 | :param require_embedded: only return corresponding columns for |
| 352 | the given :class:`_expression.ColumnElement`, if the given |
| 353 | :class:`_expression.ColumnElement` |
| 354 | is actually present within a sub-element |
| 355 | of this :class:`_expression.Selectable`. |
| 356 | Normally the column will match if |
| 357 | it merely shares a common ancestor with one of the exported |
| 358 | columns of this :class:`_expression.Selectable`. |
| 359 | |
| 360 | .. seealso:: |
| 361 | |
| 362 | :attr:`_expression.Selectable.exported_columns` - the |
| 363 | :class:`_expression.ColumnCollection` |
| 364 | that is used for the operation. |
| 365 | |
| 366 | :meth:`_expression.ColumnCollection.corresponding_column` |
| 367 | - implementation |
| 368 | method. |
| 369 | |
| 370 | """ |
| 371 | |
| 372 | return self.exported_columns.corresponding_column( |
| 373 | column, require_embedded |
| 374 | ) |
| 375 | |
| 376 | |
| 377 | class HasPrefixes: |