Removed misplaced and obsolete hasSchemaDump function.
authorjollytoad <jollytoad>
Wed, 6 Oct 2004 08:43:33 +0000 (08:43 +0000)
committerjollytoad <jollytoad>
Wed, 6 Oct 2004 08:43:33 +0000 (08:43 +0000)
This should be determined by the the version of pg_dump, not the database.

classes/database/Postgres.php
classes/database/Postgres74.php

index bf74beedede2daf36ff499626ec153ca26b89be0..b50074c9da5387153d3dacc1ae589b14c8fbd411 100755 (executable)
@@ -4,7 +4,7 @@
  * A class that implements the DB interface for Postgres
  * Note: This class uses ADODB and returns RecordSets.
  *
- * $Id: Postgres.php,v 1.246 2004/09/17 11:45:42 jollytoad Exp $
+ * $Id: Postgres.php,v 1.247 2004/10/06 08:43:33 jollytoad Exp $
  */
 
 // @@@ THOUGHT: What about inherits? ie. use of ONLY???
@@ -4139,7 +4139,6 @@ class Postgres extends ADODB_base {
        function hasVariables() { return false; }
        function hasFullExplain() { return false; }
        function hasStatsCollector() { return false; }
-       function hasSchemaDump() { return false; }
        function hasAlterColumnType() { return false; }
        function hasUserSessionDefaults() { return false; }
        function hasUserRename() { return false; }
index 9d9ac0b1df276fe239a4e64b32be62e01c8b239c..39866623a67e63d7046adaff89a1255b1af3df87 100644 (file)
@@ -4,7 +4,7 @@
  * A class that implements the DB interface for Postgres
  * Note: This class uses ADODB and returns RecordSets.
  *
- * $Id: Postgres74.php,v 1.40 2004/09/07 14:04:21 jollytoad Exp $
+ * $Id: Postgres74.php,v 1.41 2004/10/06 08:43:33 jollytoad Exp $
  */
 
 include_once('./classes/database/Postgres73.php');
@@ -491,7 +491,6 @@ class Postgres74 extends Postgres73 {
        function hasGrantOption() { return true; }
        function hasDomainConstraints() { return true; }
        function hasUserRename() { return true; }
-       function hasSchemaDump() { return true; }
        function hasRecluster() { return true; }
        
 }