diff options
| author | Ville Skyttä <ville.skytta@iki.fi> | 2016-10-07 13:18:58 +0300 |
|---|---|---|
| committer | Ville Skyttä <ville.skytta@iki.fi> | 2016-10-08 20:42:50 +0300 |
| commit | 8c2c464cb8e1b40f90f544295afbf9a83b372eb7 (patch) | |
| tree | 09a6c0d0f76f77c8de444fd60e0049a203de7966 /lib/sqlalchemy/orm | |
| parent | e47063bfe0de1318c12a4f9ef67b9538cad34489 (diff) | |
| download | sqlalchemy-8c2c464cb8e1b40f90f544295afbf9a83b372eb7.tar.gz | |
spelling: Postgresql -> PostgreSQL
Diffstat (limited to 'lib/sqlalchemy/orm')
| -rw-r--r-- | lib/sqlalchemy/orm/query.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/sqlalchemy/orm/query.py b/lib/sqlalchemy/orm/query.py index e6416d173..d6a81ffd6 100644 --- a/lib/sqlalchemy/orm/query.py +++ b/lib/sqlalchemy/orm/query.py @@ -480,7 +480,7 @@ class Query(object): :meth:`.SelectBase.cte` method; see that method for further details. - Here is the `Postgresql WITH + Here is the `PostgreSQL WITH RECURSIVE example <http://www.postgresql.org/docs/8.4/static/queries-with.html>`_. Note that, in this example, the ``included_parts`` cte and the @@ -1413,7 +1413,7 @@ class Query(object): q = sess.query(User).with_for_update(nowait=True, of=User) - The above query on a Postgresql backend will render like:: + The above query on a PostgreSQL backend will render like:: SELECT users.id AS users_id FROM users FOR UPDATE OF users NOWAIT @@ -2568,7 +2568,7 @@ class Query(object): :attr:`.Query.statement` accessor, however. :param \*expr: optional column expressions. When present, - the Postgresql dialect will render a ``DISTINCT ON (<expressions>>)`` + the PostgreSQL dialect will render a ``DISTINCT ON (<expressions>>)`` construct. """ |
