summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--includes/database/pgsql/install.inc8
1 files changed, 0 insertions, 8 deletions
diff --git a/includes/database/pgsql/install.inc b/includes/database/pgsql/install.inc
index 2223781dc..7f63f6cc3 100644
--- a/includes/database/pgsql/install.inc
+++ b/includes/database/pgsql/install.inc
@@ -84,14 +84,6 @@ class DatabaseTasks_pgsql extends DatabaseTasks {
LANGUAGE \'sql\''
);
}
- db_query('CREATE OR REPLACE FUNCTION "if"(boolean, text, text) RETURNS text AS
- \'SELECT CASE WHEN $1 THEN $2 ELSE $3 END;\'
- LANGUAGE \'sql\''
- );
- db_query('CREATE OR REPLACE FUNCTION "if"(boolean, integer, integer) RETURNS integer AS
- \'SELECT CASE WHEN $1 THEN $2 ELSE $3 END;\'
- LANGUAGE \'sql\''
- );
db_query('CREATE OR REPLACE FUNCTION "substring_index"(text, text, integer) RETURNS text AS
\'SELECT array_to_string((string_to_array($1, $2)) [1:$3], $2);\'