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

dave reid’s picture

Status: Needs work » Closed (duplicate)