Hi John & all,
I have been having trouble with 'REPLACE' on CreateTableSQL for postgres, and it appears the following fix will cure many issues related to that:
--- datadict/datadict-postgres.inc.php 18 Jun 2005 00:19:00 -0000 1.1.1.1
+++ datadict/datadict-postgres.inc.php 14 Aug 2005 23:47:48 -0000
@@ -15,6 +15,7 @@
class ADODB2_postgres extends ADODB_DataDict {
+ var $dropTable = 'DROP TABLE %s CASCADE';
var $databaseType = 'postgres';
var $seqField = false;
var $seqPrefix = 'SEQ_';
Does this seems like a general fix that can be applied back to the mainline?
- spider |