Re: [SQL] strange error message
Uwe Bartels writes: > I've got a strange error message in our java application. > ERROR JDBCTransaction:124 - JDBC commit failed > *org.postgresql.util.PSQLException: ERROR: bogus varno: 65001* This is a symptom of some kind of planner error. If you are not running the latest minor release of your Postgres branch, update and see if it goes away. If not, please file a bug report with sufficient information to reproduce the problem by hand (ie, the problem query plus schema+data sufficient to run it against). regards, tom lane -- Sent via pgsql-sql mailing list (pgsql-sql@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-sql
Re: [SQL] strange error message
Hi Tom, Cool. Thanks for your answer. Best Regards, Uwe On 25 November 2011 17:43, Tom Lane wrote: > Uwe Bartels writes: > > I've got a strange error message in our java application. > > > ERROR JDBCTransaction:124 - JDBC commit failed > > *org.postgresql.util.PSQLException: ERROR: bogus varno: 65001* > > This is a symptom of some kind of planner error. If you are not > running the latest minor release of your Postgres branch, update > and see if it goes away. If not, please file a bug report with > sufficient information to reproduce the problem by hand (ie, the > problem query plus schema+data sufficient to run it against). > >regards, tom lane >