[sqlalchemy] Undefer Hybrid Attributes

2013-03-07 Thread Kent
I notice that Hybrid Attributes don't show up as mapper properties (since they are class wide instead of mapper specific, I suppose). I couldn't find documentation on whether I can undefer these? Or can I create a synonym or column_property from a hybrid attribute in the mapper? -- You

Re: [sqlalchemy] Undefer Hybrid Attributes

2013-03-07 Thread Michael Bayer
The hybrid attribute is a Python function that invokes when it's called. So it doesn't make sense for it to be a column property since there is no attribute to be populated. Undeferred also doesn't make any sense because the hybrid already calls a local in-Python function when accessed at

Re: [sqlalchemy] Undefer Hybrid Attributes

2013-03-07 Thread Kent Bower
That makes sense, Thanks, Kent On Mar 7, 2013, at 12:09 PM, Michael Bayer mike...@zzzcomputing.com wrote: The hybrid attribute is a Python function that invokes when it's called. So it doesn't make sense for it to be a column property since there is no attribute to be populated.