diff options
author | Geolim4 <contact@geolim4.com> | 2014-08-08 15:06:12 +0200 |
---|---|---|
committer | Geolim4 <contact@geolim4.com> | 2014-08-08 16:40:33 +0200 |
commit | 6b60153ab4ac036bcd4eaaa90806d9898fc1e9a2 (patch) | |
tree | d378a9a0aa46968a08a0f20dcbbe4b4e2c049f3a /phpBB/phpbb/db/driver/postgres.php | |
parent | f6da2661091a9f068956a23df7e70450cec9ee74 (diff) | |
download | forums-6b60153ab4ac036bcd4eaaa90806d9898fc1e9a2.tar forums-6b60153ab4ac036bcd4eaaa90806d9898fc1e9a2.tar.gz forums-6b60153ab4ac036bcd4eaaa90806d9898fc1e9a2.tar.bz2 forums-6b60153ab4ac036bcd4eaaa90806d9898fc1e9a2.tar.xz forums-6b60153ab4ac036bcd4eaaa90806d9898fc1e9a2.zip |
[ticket/12671] Possibility to use NOT LIKE expression
PHPBB3-12671
Diffstat (limited to 'phpBB/phpbb/db/driver/postgres.php')
-rw-r--r-- | phpBB/phpbb/db/driver/postgres.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/phpBB/phpbb/db/driver/postgres.php b/phpBB/phpbb/db/driver/postgres.php index 83e9fa51f6..a3b9aa4c6b 100644 --- a/phpBB/phpbb/db/driver/postgres.php +++ b/phpBB/phpbb/db/driver/postgres.php @@ -371,6 +371,15 @@ class postgres extends \phpbb\db\driver\driver } /** + * Build NOT LIKE expression + * @access private + */ + function _sql_not_like_expression($expression) + { + return $expression; + } + + /** * {@inheritDoc} */ function cast_expr_to_bigint($expression) |