Actions
Bug #1246
closedNew user registration has DB error
Start date:
01/05/2004
Due date:
% Done:
0%
Estimated time:
Bugzilla-Id:
1246
Description
Can't register a new user with the latest DB model.
ERROR: Relation "party_id_seq" does not exist " on query "{1}"
Updated by P. Anderson almost 21 years ago
Since table party's PK's sequence is called party_party_id_seq and not
party_id_seq (as is expected), Postgres throws ERROR: Relation "party_id_seq"
does not exist (because it truly doesn't!).
vegtest102u=# select nextval('party_party_id_seq');
nextval
---------
472
This is related to VBModelBeanToDB.reservePrimaryKey() so Gabe, I could use some
assistance please.
Actions