summaryrefslogtreecommitdiffstats
path: root/3rdparty
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2012-05-13 20:56:25 +0200
committerRobin Appelman <icewind@owncloud.com>2012-05-13 20:56:25 +0200
commit68fd5a5d5872e0a83509ab195057859edfd332ed (patch)
tree31f496f6e163b0f783ac0cf3dcf81b0e77685f89 /3rdparty
parent1a2ab2ef6881ce4f9e53a84f53ee5e578427434e (diff)
downloadnextcloud-server-68fd5a5d5872e0a83509ab195057859edfd332ed.tar.gz
nextcloud-server-68fd5a5d5872e0a83509ab195057859edfd332ed.zip
some mdb2 pgsql fixes
Diffstat (limited to '3rdparty')
-rw-r--r--3rdparty/MDB2/Driver/Manager/pgsql.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/3rdparty/MDB2/Driver/Manager/pgsql.php b/3rdparty/MDB2/Driver/Manager/pgsql.php
index e034e6b7381..a7b776cc1b7 100644
--- a/3rdparty/MDB2/Driver/Manager/pgsql.php
+++ b/3rdparty/MDB2/Driver/Manager/pgsql.php
@@ -513,7 +513,7 @@ class MDB2_Driver_Manager_pgsql extends MDB2_Driver_Manager_Common
* @return mixed array of view names on success, a MDB2 error on failure
* @access public
*/
- function listViews()
+ function listViews($database = null)
{
$db = $this->getDBInstance();
if (PEAR::isError($db)) {
@@ -645,7 +645,7 @@ class MDB2_Driver_Manager_pgsql extends MDB2_Driver_Manager_Common
* @return mixed array of table names on success, a MDB2 error on failure
* @access public
*/
- function listTables()
+ function listTables($database = null)
{
$db = $this->getDBInstance();
if (PEAR::isError($db)) {
@@ -952,7 +952,7 @@ class MDB2_Driver_Manager_pgsql extends MDB2_Driver_Manager_Common
* @return mixed array of sequence names on success, a MDB2 error on failure
* @access public
*/
- function listSequences()
+ function listSequences($database = null)
{
$db = $this->getDBInstance();
if (PEAR::isError($db)) {