Index: trunk/phase3/includes/db/DatabasePostgres.php |
— | — | @@ -1389,7 +1389,7 @@ |
1390 | 1390 | |
1391 | 1391 | /* These are not used yet, but we know we don't want the default version */ |
1392 | 1392 | |
1393 | | - public function lock( $lockName, $method ) { |
| 1393 | + public function lock( $lockName, $method, $timeout = 5 ) { |
1394 | 1394 | return true; |
1395 | 1395 | } |
1396 | 1396 | public function unlock( $lockName, $method ) { |
— | — | @@ -1403,4 +1403,9 @@ |
1404 | 1404 | /** No-op */ |
1405 | 1405 | public function setBigSelects( $value = true ) {} |
1406 | 1406 | |
| 1407 | + /** Todo: maybe implement this? */ |
| 1408 | + public function lockTables( $read, $write, $method ) {} |
| 1409 | + |
| 1410 | + public function unlockTables( $method ) {} |
| 1411 | + |
1407 | 1412 | } // end DatabasePostgres class |