]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
when raising about columns not present, include the name of the property it's trying...
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 16 Apr 2010 21:01:50 +0000 (17:01 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 16 Apr 2010 21:01:50 +0000 (17:01 -0400)
to eliminate confusion over attributes not properly placed inside of a relationship().

lib/sqlalchemy/orm/mapper.py
test/orm/test_mapper.py
test/orm/test_query.py

index 673e16b2957d40cca3699077020012fb3f5d971f..7a423009964f7062ac4283f4bfad5e64bdcfbe66 100644 (file)
@@ -560,18 +560,21 @@ class Mapper(object):
                             self.mapped_table._reset_exported()
                         mc = self.mapped_table.corresponding_column(c)
                         if mc is None:
-                            raise sa_exc.ArgumentError("Column '%s' is not represented in mapper's table.  "
+                            raise sa_exc.ArgumentError("When configuring property '%s' on %s, "
+                                "column '%s' is not represented in the mapper's table.  "
                                 "Use the `column_property()` function to force this column "
-                                "to be mapped as a read-only attribute." % c)
+                                "to be mapped as a read-only attribute." % (key, self, c))
                     mapped_column.append(mc)
                 prop = ColumnProperty(*mapped_column)
             else:
-                raise sa_exc.ArgumentError("WARNING: column '%s' conflicts with property '%r'.  "
+                raise sa_exc.ArgumentError("WARNING: when configuring property '%s' on %s, column '%s' "
+                    "conflicts with property '%r'.  "
                     "To resolve this, map the column to the class under a different "
                     "name in the 'properties' dictionary.  Or, to remove all awareness "
                     "of the column entirely (including its availability as a foreign key), "
                     "use the 'include_properties' or 'exclude_properties' mapper arguments "
-                    "to control specifically which table columns get mapped." % (column.key, prop))
+                    "to control specifically which table columns get mapped." % 
+                    (key, self, column.key, prop))
 
         if isinstance(prop, ColumnProperty):
             col = self.mapped_table.corresponding_column(prop.columns[0])
index ef9214a8b9caa201babcb0c9151c9b633a0ebcfd..e609e5ba0f95c08c8226142f589750998e12cda6 100644 (file)
@@ -157,7 +157,7 @@ class MapperTest(_fixtures.FixtureTest):
 
     @testing.resolve_artifact_names
     def test_column_not_present(self):
-        assert_raises_message(sa.exc.ArgumentError, "not represented in mapper's table", mapper, User, users, properties={
+        assert_raises_message(sa.exc.ArgumentError, "not represented in the mapper's table", mapper, User, users, properties={
             'foo':addresses.c.user_id
         })
         
index 89b66fd868e4ce92df841a310298eb659fb15392..ceb78ad1f181d8433e08314c07ad8e3dbaad7deb 100644 (file)
@@ -3750,7 +3750,7 @@ class ExternalColumnsTest(QueryTest):
 
     def test_external_columns_bad(self):
 
-        assert_raises_message(sa_exc.ArgumentError, "not represented in mapper's table", mapper, User, users, properties={
+        assert_raises_message(sa_exc.ArgumentError, "not represented in the mapper's table", mapper, User, users, properties={
             'concat': (users.c.id * 2),
         })
         clear_mappers()