From 9532aa9eaa58113a0e037967ba213fca7272575b Mon Sep 17 00:00:00 2001 From: Greg Sabino Mullane Date: Tue, 24 Jun 2008 20:58:10 +0000 Subject: [PATCH] Add some quick no-ops for the new lock() and unlock() funcs. --- includes/db/DatabasePostgres.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/includes/db/DatabasePostgres.php b/includes/db/DatabasePostgres.php index 8f8488b9ae..a0d3d6962e 100644 --- a/includes/db/DatabasePostgres.php +++ b/includes/db/DatabasePostgres.php @@ -1327,4 +1327,13 @@ END; return implode( ' || ', $stringList ); } + /* These are not used yet, but we know we don't want the default version */ + + public function lock( $lockName, $method ) { + return true; + } + public function unlock( $lockName, $method ) { + return true; + } + } // end DatabasePostgres class -- 2.20.1