Add some quick no-ops for the new lock() and unlock() funcs.
authorGreg Sabino Mullane <greg@users.mediawiki.org>
Tue, 24 Jun 2008 20:58:10 +0000 (20:58 +0000)
committerGreg Sabino Mullane <greg@users.mediawiki.org>
Tue, 24 Jun 2008 20:58:10 +0000 (20:58 +0000)
includes/db/DatabasePostgres.php

index 8f8488b..a0d3d69 100644 (file)
@@ -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