X-Git-Url: http://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Flibs%2Frdbms%2Fdatabase%2FDBConnRef.php;h=11ce9577092d24a94213ee474b524549eca1c61c;hb=abeca9ac48415828428284816d76dee347e680ea;hp=acb21ed9b6817ee5e275ee9dcc545f5142c9e17e;hpb=3196cacb552900bc4f416897084c358f75c46596;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/libs/rdbms/database/DBConnRef.php b/includes/libs/rdbms/database/DBConnRef.php index acb21ed9b6..11ce957709 100644 --- a/includes/libs/rdbms/database/DBConnRef.php +++ b/includes/libs/rdbms/database/DBConnRef.php @@ -211,10 +211,6 @@ class DBConnRef implements IDatabase { return $this->__call( __FUNCTION__, func_get_args() ); } - public function fieldInfo( $table, $field ) { - return $this->__call( __FUNCTION__, func_get_args() ); - } - public function affectedRows() { return $this->__call( __FUNCTION__, func_get_args() ); } @@ -231,18 +227,10 @@ class DBConnRef implements IDatabase { return $this->__call( __FUNCTION__, func_get_args() ); } - public function reportConnectionError( $error = 'Unknown error' ) { - return $this->__call( __FUNCTION__, func_get_args() ); - } - public function query( $sql, $fname = __METHOD__, $tempIgnore = false ) { return $this->__call( __FUNCTION__, func_get_args() ); } - public function reportQueryError( $error, $errno, $sql, $fname, $tempIgnore = false ) { - return $this->__call( __FUNCTION__, func_get_args() ); - } - public function freeResult( $res ) { return $this->__call( __FUNCTION__, func_get_args() ); } @@ -304,10 +292,6 @@ class DBConnRef implements IDatabase { return $this->__call( __FUNCTION__, func_get_args() ); } - public function indexUnique( $table, $index ) { - return $this->__call( __FUNCTION__, func_get_args() ); - } - public function insert( $table, $a, $fname = __METHOD__, $options = [] ) { return $this->__call( __FUNCTION__, func_get_args() ); } @@ -362,6 +346,13 @@ class DBConnRef implements IDatabase { return $this->__call( __FUNCTION__, func_get_args() ); } + public function buildSelectSubquery( + $table, $vars, $conds = '', $fname = __METHOD__, + $options = [], $join_conds = [] + ) { + return $this->__call( __FUNCTION__, func_get_args() ); + } + public function databasesAreIndependent() { return $this->__call( __FUNCTION__, func_get_args() ); } @@ -460,7 +451,7 @@ class DBConnRef implements IDatabase { return $this->__call( __FUNCTION__, func_get_args() ); } - public function wasErrorReissuable() { + public function wasConnectionLoss() { return $this->__call( __FUNCTION__, func_get_args() ); } @@ -468,6 +459,10 @@ class DBConnRef implements IDatabase { return $this->__call( __FUNCTION__, func_get_args() ); } + public function wasErrorReissuable() { + return $this->__call( __FUNCTION__, func_get_args() ); + } + public function masterPosWait( DBMasterPos $pos, $timeout ) { return $this->__call( __FUNCTION__, func_get_args() ); } @@ -500,7 +495,9 @@ class DBConnRef implements IDatabase { return $this->__call( __FUNCTION__, func_get_args() ); } - public function startAtomic( $fname = __METHOD__ ) { + public function startAtomic( + $fname = __METHOD__, $cancelable = IDatabase::ATOMIC_NOT_CANCELABLE + ) { return $this->__call( __FUNCTION__, func_get_args() ); } @@ -508,6 +505,10 @@ class DBConnRef implements IDatabase { return $this->__call( __FUNCTION__, func_get_args() ); } + public function cancelAtomic( $fname = __METHOD__ ) { + return $this->__call( __FUNCTION__, func_get_args() ); + } + public function doAtomicSection( $fname, callable $callback ) { return $this->__call( __FUNCTION__, func_get_args() ); } @@ -528,10 +529,6 @@ class DBConnRef implements IDatabase { return $this->__call( __FUNCTION__, func_get_args() ); } - public function listTables( $prefix = null, $fname = __METHOD__ ) { - return $this->__call( __FUNCTION__, func_get_args() ); - } - public function timestamp( $ts = 0 ) { return $this->__call( __FUNCTION__, func_get_args() ); }