aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/db/postgres.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/includes/db/postgres.php')
-rw-r--r--phpBB/includes/db/postgres.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/phpBB/includes/db/postgres.php b/phpBB/includes/db/postgres.php
index bf22cffafa..dddf615f9c 100644
--- a/phpBB/includes/db/postgres.php
+++ b/phpBB/includes/db/postgres.php
@@ -155,6 +155,14 @@ class dbal_postgres extends dbal
}
/**
+ * {@inheritDoc}
+ */
+ function sql_concatenate($string1, $string2)
+ {
+ return $string1 . ' || ' . $string2;
+ }
+
+ /**
* SQL Transaction
* @access private
*/