I am using PGSQL 8.2.3 and when I tried to install/enable "Views panes" I got the above message.
It seems that PGSQL 8.2.3 sees "offset" as a reserved word in its SQL queries when without quotes around it.
I had to modify the "panels_views.install" file, line 22 from:
$sql .= $field . ' ' . $data['definition'];
To:
$sql .= '"' . $field . '" ' . $data['definition'];
--- put double-quotes around the $field names in order for the query to work properly.
Comments
Comment #1
sunMarking as duplicate of #225824: "offset" reserved in PostgreSQL