[sqlalchemy] Re: Problems with sub-queries

2009-06-29 Thread Michael Bayer
Mike Driscoll wrote: > > > > On Jun 26, 5:49 pm, "Michael Bayer" wrote: >> Mike wrote: >> >> > TypeError: 'Alias' object is unindexable >> >> that error means you're trying to say x['foo'] on something that doesn't >> have a __getitem__().  I don't see that here, can you send a stack trace >> whi

[sqlalchemy] Re: Problems with sub-queries

2009-06-29 Thread Mike Driscoll
On Jun 26, 5:49 pm, "Michael Bayer" wrote: > Mike wrote: > > > TypeError: 'Alias' object is unindexable > > that error means you're trying to say x['foo'] on something that doesn't > have a __getitem__().  I don't see that here, can you send a stack trace > which would reveal if this is being p

[sqlalchemy] Re: Problems with sub-queries

2009-06-26 Thread Michael Bayer
Mike wrote: > > > TypeError: 'Alias' object is unindexable > that error means you're trying to say x['foo'] on something that doesn't have a __getitem__(). I don't see that here, can you send a stack trace which would reveal if this is being produced from within SQLAlchemy internals ? --~--~-