Here's the latest update fix for the postgres port.

Includes a new IF function, to work with the forum enhancements, support for postgres server process on another machine (uses the $host / $port parts of the url now) AND fixes http://drupal.org/node/10407

Comments

dries’s picture

There is no patch attached.

adrian’s picture

StatusFileSize
new8.92 KB

eish. sorry about that, it was quite late.

adrian’s picture

StatusFileSize
new12.67 KB

newer patch ...
also fixes : http://drupal.org/node/9659

dries’s picture

Committed to HEAD. Thanks.

Anonymous’s picture

Anonymous’s picture

I still had the "Attribute f.title must be GROUPed" error when trying to watch the news aggregator sources in 4.5.0.

Adding "f.title, f.description, f.image" to the GROUP BY statement at:
function aggregator_page_sources() {
$result = db_query('SELECT f.fid, f.title, f.description, f.image, MAX(i.timestamp) AS last FROM {aggregator_feed} f LEFT JOIN {aggregator_item} i ON f.fid = i.fid GROUP BY f.fid, f.title, f.description, f.image');

fixed the problem, not sure if it behaves as it should though.

adrian’s picture