Changeset 4321

Show
Ignore:
Timestamp:
04/30/08 21:00:32 (14 months ago)
Author:
jwage
Message:

fixes #983

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/0.11/lib/Doctrine/Export/Pgsql.php

    r4252 r4321  
    298298    { 
    299299        $sequenceName = $this->conn->quoteIdentifier($this->conn->formatter->getSequenceName($sequenceName), true); 
    300         return $this->conn->exec('CREATE SEQUENCE ' . $sequenceName . ' INCREMENT 1' . 
    301                     ($start < 1 ? ' MINVALUE ' . $start : '') . ' START ' . $start); 
     300        return 'CREATE SEQUENCE ' . $sequenceName . ' INCREMENT 1' . 
     301                    ($start < 1 ? ' MINVALUE ' . $start : '') . ' START ' . $start; 
    302302    } 
    303303