class UninstrumentedColumnLoader(LoaderStrategy):
Represent a non-instrumented MapperProperty.
The polymorphic_on argument of mapper() often results in this, if the argument is against the with_polymorphic selectable.
Method | __init__ |
Undocumented |
Method | create_row_processor |
Establish row processing functions for a given QueryContext. |
Method | setup_query |
Establish column and other state for a given QueryContext. |
Class Variable | __slots__ |
Undocumented |
Instance Variable | columns |
Undocumented |
Inherited from LoaderStrategy
:
Method | __str__ |
Undocumented |
Method | init_class_attribute |
Undocumented |
Instance Variable | is_class_level |
Undocumented |
Instance Variable | key |
Undocumented |
Instance Variable | parent |
Undocumented |
Instance Variable | parent_property |
Undocumented |
Instance Variable | strategy_key |
Undocumented |
Instance Variable | strategy_opts |
Undocumented |
Establish row processing functions for a given QueryContext.
This method fulfills the contract specified by MapperProperty.create_row_processor().
StrategizedProperty delegates its create_row_processor() method directly to this method.
Establish column and other state for a given QueryContext.
This method fulfills the contract specified by MapperProperty.setup().
StrategizedProperty delegates its setup() method directly to this method.