summaryrefslogtreecommitdiff
path: root/database
diff options
context:
space:
mode:
Diffstat (limited to 'database')
-rw-r--r--database/database.pgsql3
1 files changed, 3 insertions, 0 deletions
diff --git a/database/database.pgsql b/database/database.pgsql
index 1499e0bd6..c58b8c7e1 100644
--- a/database/database.pgsql
+++ b/database/database.pgsql
@@ -872,6 +872,9 @@ ALTER SEQUENCE menu_mid_seq RESTART 3;
--- Functions
---
+--- Always installed in 'public' as prefix isn't appended to function names
+SET search_path TO public;
+
CREATE OR REPLACE FUNCTION "greatest"(numeric, numeric) RETURNS numeric AS '
SELECT CASE WHEN (($1 > $2) OR ($2 IS NULL)) THEN $1 ELSE $2 END;
' LANGUAGE 'sql';