[Sqlalchemy-tickets] Issue #2999: Typo in Querying with Joins example (zzzeek/sqlalchemy)
Brought to you by:
zzzeek
|
From: Borja M. <iss...@bi...> - 2014-03-24 15:03:49
|
New issue 2999: Typo in Querying with Joins example https://bitbucket.org/zzzeek/sqlalchemy/issue/2999/typo-in-querying-with-joins-example Borja Morales: From http://docs.sqlalchemy.org/en/rel_0_9/orm/tutorial.html#querying-with-joins You have the following statement. ``` #!python >>> session.query(User).join(Address).\ ... filter(Address.email_address=='ja...@go...').\ ... all() [<User(name='jack', fullname='Jack Bean', email_address='gjffdd')>] ``` Instead of stating email_address='gjffdd' it should be password='gjffdd' |