summaryrefslogtreecommitdiff
path: root/odb/relational/pgsql/schema.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/relational/pgsql/schema.cxx')
-rw-r--r--odb/relational/pgsql/schema.cxx12
1 files changed, 2 insertions, 10 deletions
diff --git a/odb/relational/pgsql/schema.cxx b/odb/relational/pgsql/schema.cxx
index 0885200..0a2b82d 100644
--- a/odb/relational/pgsql/schema.cxx
+++ b/odb/relational/pgsql/schema.cxx
@@ -4,7 +4,6 @@
#include <set>
-#include <odb/diagnostics.hxx>
#include <odb/relational/schema.hxx>
#include <odb/relational/pgsql/common.hxx>
@@ -69,19 +68,12 @@ namespace relational
//
sql_type const& t (parse_sql_type (c.type ()));
+ // The model creation code makes sure it is one of these type.
+ //
if (t.type == sql_type::INTEGER)
os << "SERIAL";
else if (t.type == sql_type::BIGINT)
os << "BIGSERIAL";
- else
- {
- location const& l (c.get<location> ("cxx-location"));
-
- error (l) << "automatically assigned object id must map "
- << "to PostgreSQL INTEGER or BIGINT" << endl;
-
- throw operation_failed ();
- }
}
else
base::type (c, auto_);