Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 1.2.0-RC1
-
Component/s: Import/Export
-
Labels:None
-
Environment:no matter
Description
in http://trac.doctrine-project.org/browser/branches/1.1/lib/Doctrine/Import/Pgsql.php
line 172
used if (strtolower($val['type']) === 'varchar') {
but in postgres varchar does not exist so you must compare with character varying like that :
if (strtolower($val['type']) === 'character varying') {
Activity
Jonathan H. Wage
made changes -
| Field | Original Value | New Value |
|---|---|---|
| Status | Open [ 1 ] | Closed [ 6 ] |
| Fix Version/s | 1.2.0-RC1 [ 10041 ] | |
| Resolution | Fixed [ 1 ] |