Typo in Querying with Joins example

Issue #2999 resolved
Borja Morales created an issue

From http://docs.sqlalchemy.org/en/rel_0_9/orm/tutorial.html#querying-with-joins

You have the following statement.

>>> session.query(User).join(Address).\
...         filter(Address.email_address=='jack@google.com').\
...         all() 
[<User(name='jack', fullname='Jack Bean', email_address='gjffdd')>]

Instead of stating email_address='gjffdd' it should be password='gjffdd'

Comments (2)

  1. Log in to comment