As Bruno says. Something like this will completely nullify the benefit of lazy tables.
Field(..., readable=True) is OK but db.table.field.readable=True is BAD because will force db.table to be instantiated. Massimo On Saturday, 18 August 2012 08:45:45 UTC-5, rochacbruno wrote: > > What about > > db.table.field.readable = True > db.table.field.default = x > > ? > --

