bug #1596328 [export] drop support for POSTGRESQL compatibility mode

This commit is contained in:
Marc Delisle
2007-03-15 20:38:23 +00:00
parent f10a953ff3
commit c1d2b61090
2 changed files with 4 additions and 1 deletions

View File

@@ -14,6 +14,7 @@ $HeadURL$
. [general] use PMA_getenv('PHP_SELF')
- bug #1676033 [core] pow(int,int) causes overflow
- bug #1680952 [core] undefined function PMA_getUvaCondition()
- bug #1596328 [export] drop support for POSTGRESQL compatibility mode
2.10.0.3 (not released yet)
=====================

View File

@@ -1156,7 +1156,9 @@ function PMA_DBI_getCompatibilities()
$compats[] = 'MYSQL40';
$compats[] = 'MSSQL';
$compats[] = 'ORACLE';
$compats[] = 'POSTGRESQL';
// removed; in MySQL 5.0.33, this produces exports that
// can't be read by POSTGRESQL (see our bug #1596328)
//$compats[] = 'POSTGRESQL';
if (PMA_MYSQL_INT_VERSION >= 50002) {
$compats[] = 'TRADITIONAL';
}