Index: MDB2/Driver/Datatype/pgsql.php =================================================================== RCS file: /repository/pear/MDB2/MDB2/Driver/Datatype/pgsql.php,v retrieving revision 1.44 diff -u -p -r1.44 pgsql.php --- MDB2/Driver/Datatype/pgsql.php 16 Jan 2006 12:55:55 -0000 1.44 +++ MDB2/Driver/Datatype/pgsql.php 13 Feb 2006 12:38:36 -0000 @@ -587,6 +587,10 @@ for some reason this piece of code cause $type[] = 'date'; $length = null; break; + case 'unknown': + $type[] = 'text'; + $length = null; + break; default: $db =& $this->getDBInstance(); if (PEAR::isError($db)) {