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';
break;
case 'blob':
$sTranslated = 'text';
$sTranslated = 'bytea';
break;
case 'char':
if($iPrecision > 0 && $iPrecision < 256)