summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/engine/interfaces.py
diff options
context:
space:
mode:
authorVille Skyttä <ville.skytta@iki.fi>2016-10-07 13:18:58 +0300
committerVille Skyttä <ville.skytta@iki.fi>2016-10-08 20:42:50 +0300
commit8c2c464cb8e1b40f90f544295afbf9a83b372eb7 (patch)
tree09a6c0d0f76f77c8de444fd60e0049a203de7966 /lib/sqlalchemy/engine/interfaces.py
parente47063bfe0de1318c12a4f9ef67b9538cad34489 (diff)
downloadsqlalchemy-8c2c464cb8e1b40f90f544295afbf9a83b372eb7.tar.gz
spelling: Postgresql -> PostgreSQL
Diffstat (limited to 'lib/sqlalchemy/engine/interfaces.py')
-rw-r--r--lib/sqlalchemy/engine/interfaces.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sqlalchemy/engine/interfaces.py b/lib/sqlalchemy/engine/interfaces.py
index 2560937ab..d64e47fee 100644
--- a/lib/sqlalchemy/engine/interfaces.py
+++ b/lib/sqlalchemy/engine/interfaces.py
@@ -100,7 +100,7 @@ class Dialect(object):
preexecute_autoincrement_sequences
True if 'implicit' primary key functions must be executed separately
in order to get their value. This is currently oriented towards
- Postgresql.
+ PostgreSQL.
implicit_returning
use RETURNING or equivalent during INSERT execution in order to load
@@ -136,7 +136,7 @@ class Dialect(object):
sequences_optional
If True, indicates if the "optional" flag on the Sequence() construct
should signal to not generate a CREATE SEQUENCE. Applies only to
- dialects that support sequences. Currently used only to allow Postgresql
+ dialects that support sequences. Currently used only to allow PostgreSQL
SERIAL to be used on a column that specifies Sequence() for usage on
other backends.