This commit is contained in:
parent
486375f844
commit
13f2ea77d9
1 changed files with 1 additions and 7 deletions
|
@ -58,13 +58,7 @@ class Doctrine_Export_Firebird_TestCase extends Doctrine_UnitTestCase
|
||||||
|
|
||||||
$this->export->createTable($name, $fields);
|
$this->export->createTable($name, $fields);
|
||||||
|
|
||||||
$this->assertEqual($this->adapter->pop(), 'CREATE TRIGGER mytable_AUTOINCREMENT_PK FOR mytable
|
$this->assertEqual($this->adapter->pop(), 'CREATE TRIGGER mytable_AUTOINCREMENT_PK FOR mytable ACTIVE BEFORE INSERT POSITION 0 AS BEGIN IF (NEW.id IS NULL OR NEW.id = 0) THEN NEW.id = GEN_ID(mytable_seq, 1) END');
|
||||||
ACTIVE BEFORE INSERT POSITION 0
|
|
||||||
AS
|
|
||||||
BEGIN
|
|
||||||
IF (NEW.id IS NULL OR NEW.id = 0) THEN
|
|
||||||
NEW.id = GEN_ID(mytable_seq, 1);
|
|
||||||
END');
|
|
||||||
}
|
}
|
||||||
public function testCreateTableSupportsDefaultAttribute()
|
public function testCreateTableSupportsDefaultAttribute()
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue