Project

General

Profile

« Previous | Next » 

Revision 2607

schemas/functions.sql: _label(): Fixed bug where some Python syntax had not been translated to PostgreSQL

View differences:

functions.sql
41 41
    LANGUAGE plpgsql IMMUTABLE
42 42
    AS $$
43 43
BEGIN
44
    new.result := (SELECT new.label+': '+new.value);
44
    new.result := (SELECT new.label||': '||new.value);
45 45
    RETURN new;
46 46
END;
47 47
$$;

Also available in: Unified diff