Closed (fixed)
Project:
Drupal core
Component:
postgresql database
Priority:
Critical
Category:
Task
Assigned:
Reporter:
Created:
20 Sep 2004 at 00:16 UTC
Updated:
26 Mar 2005 at 23:41 UTC
Jump to comment: Most recent file
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
| Comment | File | Size | Author |
|---|---|---|---|
| #3 | postgres_compatibility_210904.diff | 12.67 KB | adrian |
| #2 | postgres_compatibility_200904_0.diff | 8.92 KB | adrian |
Comments
Comment #1
dries commentedThere is no patch attached.
Comment #2
adrian commentedeish. sorry about that, it was quite late.
Comment #3
adrian commentednewer patch ...
also fixes : http://drupal.org/node/9659
Comment #4
dries commentedCommitted to HEAD. Thanks.
Comment #5
(not verified) commentedComment #6
(not verified) commentedI 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.
Comment #7
adrian commented