From: Derick Alangi Date: Sun, 24 Mar 2019 23:29:22 +0000 (+0100) Subject: db: Drop child methods as they're same as parent methods X-Git-Tag: 1.34.0-rc.0~2382^2 X-Git-Url: http://git.cyclocoop.org/%22%20.%20generer_url_ecrire%28%22suivi_revisions%22%29%20.%20%22?a=commitdiff_plain;h=d656baac644b05477e7a0ec35ca6a789b06e378b;p=lhc%2Fweb%2Fwiklou.git db: Drop child methods as they're same as parent methods Change-Id: I8b3827a57782f02497da2ab8191d1dad11e92bca --- diff --git a/includes/db/DatabaseOracle.php b/includes/db/DatabaseOracle.php index 16bde4b959..bc3873d26e 100644 --- a/includes/db/DatabaseOracle.php +++ b/includes/db/DatabaseOracle.php @@ -700,14 +700,6 @@ class DatabaseOracle extends Database { return new Blob( $b ); } - function decodeBlob( $b ) { - if ( $b instanceof Blob ) { - $b = $b->fetch(); - } - - return $b; - } - function unionQueries( $sqls, $all ) { $glue = ' UNION ALL '; @@ -1350,10 +1342,6 @@ class DatabaseOracle extends Database { return 'BITOR(' . $fieldLeft . ', ' . $fieldRight . ')'; } - function getServer() { - return $this->server; - } - public function buildGroupConcatField( $delim, $table, $field, $conds = '', $join_conds = [] ) {