bytea is the blob-equivalent in PostgreSQL

This commit is contained in:
Carsten Wolff 2004-02-23 20:11:23 +00:00
parent 907f3575ce
commit 1c8e2629c5

View File

@ -42,7 +42,7 @@
$sTranslated = 'int4'; $sTranslated = 'int4';
break; break;
case 'blob': case 'blob':
$sTranslated = 'text'; $sTranslated = 'bytea';
break; break;
case 'char': case 'char':
if($iPrecision > 0 && $iPrecision < 256) if($iPrecision > 0 && $iPrecision < 256)