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