I loaded the data model and most things work ok, but there are a
number of random places where I get a server error when trying to
access certain pages or functions.
When I check datamodel.txt for errors, I see a number of places where
there are truncation errors like these:
psql:user-groups.sql:317: NOTICE: identifier
"set_user_group_roles_creation_date" will be truncated to
"set_user_group_roles_creation_d"
psql:user-groups.sql:321: NOTICE: identifier
"set_user_group_roles_creation_date" will be truncated to
"set_user_group_roles_creation_d"
It looks like plpgsql function names are all getting truncated at 31
characters whenever the length is longer than that. I am using
PostgreSQL 7.0b3. I assume this will cause problems (am I right?)
Also, is there an easy way around this? (like maybe recompiling
Postgres with different parameters?)