I'm sorry. I was experimenting with PostgreSql plugin and forgot to revert this change. It will be fixed.
PS:
As you can see in postgre plugin code I added GetInsertedId but I pass null in sequence variable:
Format("select currval('%s')", sequence);
As I discovered this is the only way to get the squence value. Unfortunatelly this way requires sequence name.
Hm, I am sorry I missed this one...
Actually, this makes PostgreSQL equivalent to Oracle - means you no longer need or use "autoincrement" and GetInsertedId, but rather sequences directly... You only need to add PostgreSQL ValueGen... See SqlSequence in Oracle/OraCommon.h.