Description
In the current trunk, updates result in SQL like
UPDATE author SET author.name='NewName2' WHERE author.author_id=31147;
Note the qualified column name after the SET keyword
This does not work with postgreql. in postgresql, the update column name needs to be unqualified, like
UPDATE author SET name='NewName2' WHERE author.author_id=31147