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/dialects/postgresql/hstore.py | |
parent | e47063bfe0de1318c12a4f9ef67b9538cad34489 (diff) | |
download | sqlalchemy-8c2c464cb8e1b40f90f544295afbf9a83b372eb7.tar.gz |
spelling: Postgresql -> PostgreSQL
Diffstat (limited to 'lib/sqlalchemy/dialects/postgresql/hstore.py')
-rw-r--r-- | lib/sqlalchemy/dialects/postgresql/hstore.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/sqlalchemy/dialects/postgresql/hstore.py b/lib/sqlalchemy/dialects/postgresql/hstore.py index d3ff30efb..dc2e20de5 100644 --- a/lib/sqlalchemy/dialects/postgresql/hstore.py +++ b/lib/sqlalchemy/dialects/postgresql/hstore.py @@ -50,7 +50,7 @@ CONTAINED_BY = operators.custom_op( class HSTORE(sqltypes.Indexable, sqltypes.Concatenable, sqltypes.TypeEngine): - """Represent the Postgresql HSTORE type. + """Represent the PostgreSQL HSTORE type. The :class:`.HSTORE` type stores dictionaries containing strings, e.g.:: @@ -117,7 +117,7 @@ class HSTORE(sqltypes.Indexable, sqltypes.Concatenable, sqltypes.TypeEngine): .. seealso:: - :class:`.hstore` - render the Postgresql ``hstore()`` function. + :class:`.hstore` - render the PostgreSQL ``hstore()`` function. """ @@ -254,10 +254,10 @@ ischema_names['hstore'] = HSTORE class hstore(sqlfunc.GenericFunction): """Construct an hstore value within a SQL expression using the - Postgresql ``hstore()`` function. + PostgreSQL ``hstore()`` function. The :class:`.hstore` function accepts one or two arguments as described - in the Postgresql documentation. + in the PostgreSQL documentation. E.g.:: @@ -276,7 +276,7 @@ class hstore(sqlfunc.GenericFunction): .. seealso:: - :class:`.HSTORE` - the Postgresql ``HSTORE`` datatype. + :class:`.HSTORE` - the PostgreSQL ``HSTORE`` datatype. """ type = HSTORE |