X-Git-Url: http://git.cyclocoop.org/%7B%7B%20url_for%28%27admin_vote_del%27%2C%20idvote=vote.voteid%29%20%7D%7D?a=blobdiff_plain;f=includes%2Flibs%2Frdbms%2Fdatabase%2FDBConnRef.php;h=7cb0604e51a36dd2069333e265754b2709ab3276;hb=216865344b108082f9500b5eb8cd5efeaa7df72f;hp=50fdc27121dca87e7592ea05983f738530812035;hpb=aaf8866e3f10c92ca1350562d21e3a27dfdbe98a;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/libs/rdbms/database/DBConnRef.php b/includes/libs/rdbms/database/DBConnRef.php index 50fdc27121..7cb0604e51 100644 --- a/includes/libs/rdbms/database/DBConnRef.php +++ b/includes/libs/rdbms/database/DBConnRef.php @@ -287,6 +287,12 @@ class DBConnRef implements IDatabase { return $this->__call( __FUNCTION__, func_get_args() ); } + public function lockForUpdate( + $table, $conds = '', $fname = __METHOD__, $options = [], $join_conds = [] + ) { + return $this->__call( __FUNCTION__, func_get_args() ); + } + public function fieldExists( $table, $field, $fname = __METHOD__ ) { return $this->__call( __FUNCTION__, func_get_args() ); }