Closed (duplicate)
Project:
Drupal core
Version:
6.15
Component:
statistics.module
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
23 Dec 2009 at 23:18 UTC
Updated:
29 Dec 2009 at 22:20 UTC
The module *statistics* issues an error using PostgreSQL because the function concat() is not defined for the parameters (integer, text).
Defining the following function solves the problem:
CREATE OR REPLACE FUNCTION concat(integer, text)
RETURNS text AS
'SELECT $1 || $2;'
LANGUAGE 'sql';
Regards
Conni
Comments
Comment #1
dave reidDuplicate of #229051: Top Visitor Page problem with PostgreSQL 8.3