From 065fcbd9d2b463920d439c20d99a5a1cd7f216ed Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Wed, 17 Mar 2010 17:48:29 -0400 Subject: - The official name for the relation() function is now relationship(), to eliminate confusion over the relational algebra term. relation() however will remain available in equal capacity for the foreseeable future. [ticket:1740] --- test/dialect/test_postgresql.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/dialect/test_postgresql.py') diff --git a/test/dialect/test_postgresql.py b/test/dialect/test_postgresql.py index 8358825c4..472b12e50 100644 --- a/test/dialect/test_postgresql.py +++ b/test/dialect/test_postgresql.py @@ -436,7 +436,7 @@ class InsertTest(TestBase, AssertsExecutionResults): # want to ensure that # "null value in column "id" violates not-null constraint" is raised (IntegrityError on psycoopg2, # but ProgrammingError on pg8000), - # and not "ProgrammingError: (ProgrammingError) relation "t2_id_seq" does not exist". + # and not "ProgrammingError: (ProgrammingError) relationship "t2_id_seq" does not exist". # the latter corresponds to autoincrement behavior, which is not the case # here due to the foreign key. for eng in [ -- cgit v1.2.1