summaryrefslogtreecommitdiff
path: root/test/sql
diff options
context:
space:
mode:
authorLele Gaifax <lele@metapensiero.it>2018-12-30 21:16:11 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2018-12-30 21:16:52 -0500
commitc0f9708fde39175c8695fdd87873464f516fdf98 (patch)
tree0125f36b065ce3212d4cb2f5503ff12da4dd0d45 /test/sql
parentcfc49b45712c4e54187f47e03432331bae564037 (diff)
downloadsqlalchemy-c0f9708fde39175c8695fdd87873464f516fdf98.tar.gz
commit 1b774808c926665047bf353222ecd191679a95d1
Author: Lele Gaifax <lele@metapensiero.it> Date: Tue Dec 25 12:35:41 2018 +0100 Consistently use "PostgreSQL", fixing also a few doc glitches commit 0e382aaee4427193926f0dc10ad29056bc12c85e Author: Lele Gaifax <lele@metapensiero.it> Date: Tue Dec 25 12:08:49 2018 +0100 Remove duplicated words Change-Id: Iaa586b9412f46a50fe6ff3bbb92e07d6cb1905c8
Diffstat (limited to 'test/sql')
-rw-r--r--test/sql/test_metadata.py4
-rw-r--r--test/sql/test_selectable.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/test/sql/test_metadata.py b/test/sql/test_metadata.py
index d0fa04d78..f030a7e77 100644
--- a/test/sql/test_metadata.py
+++ b/test/sql/test_metadata.py
@@ -1858,12 +1858,12 @@ class SchemaTypeTest(fixtures.TestBase):
is_true(y_copy.type._create_events)
- # for Postgresql, this will emit CREATE TYPE
+ # for PostgreSQL, this will emit CREATE TYPE
m.dispatch.before_create(t1, testing.db)
try:
eq_(t1.c.y.type.evt_targets, (t1, ))
finally:
- # do the drop so that Postgresql emits DROP TYPE
+ # do the drop so that PostgreSQL emits DROP TYPE
m.dispatch.after_drop(t1, testing.db)
def test_enum_nonnative_column_copy_transfers_events(self):
diff --git a/test/sql/test_selectable.py b/test/sql/test_selectable.py
index 0cbaf33ea..4b92e3e3e 100644
--- a/test/sql/test_selectable.py
+++ b/test/sql/test_selectable.py
@@ -335,7 +335,7 @@ class SelectableTest(
def test_alias_handles_column_context(self):
# not quite a use case yet but this is expected to become
- # prominent w/ Postgresql's tuple functions
+ # prominent w/ PostgreSQL's tuple functions
stmt = select([table1.c.col1, table1.c.col2])
a = stmt.alias('a')