Revision 2607
Added by Aaron Marcuse-Kubitza over 12 years ago
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
schemas/functions.sql: _label(): Fixed bug where some Python syntax had not been translated to PostgreSQL