Skip to content

Commit

Permalink
zendframework#186 Add SERIAL column type to support autoincrement -st…
Browse files Browse the repository at this point in the history
…yle columns in PostgreSQL
  • Loading branch information
alextech committed Dec 19, 2016
1 parent 82e311b commit 07b5e38
Show file tree
Hide file tree
Showing 2 changed files with 61 additions and 0 deletions.
23 changes: 23 additions & 0 deletions src/Sql/Ddl/Column/Serial.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?php

/**
* Zend Framework (http://framework.zend.com/).
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
*
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/

namespace Zend\Db\Sql\Ddl\Column;

/**
* Column for PostgreSQL to automatically increment column.
*
* Similar to MySQL's autoincrement, but without performance issues.
* Used in conjunction with SequenceFeature.
*/
class Serial extends Column
{
protected $type = 'SERIAL';
}
38 changes: 38 additions & 0 deletions test/Sql/Ddl/Column/SerialTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<?php

/**
* Zend Framework (http://framework.zend.com/).
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
*
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/

namespace ZendTest\Db\Sql\Ddl\Column;

use Zend\Db\Sql\Ddl\Column\Serial;
use Zend\Db\Sql\Ddl\Constraint\PrimaryKey;

class SerialTest extends \PHPUnit_Framework_TestCase
{
public function testGetExpressionData()
{
$column = new Serial('id');
$this->assertEquals(
[['%s %s NOT NULL', ['id', 'SERIAL'], [$column::TYPE_IDENTIFIER, $column::TYPE_LITERAL]]],
$column->getExpressionData()
);

$column = new Serial('id');
$column->addConstraint(new PrimaryKey());
$this->assertEquals(
[
['%s %s NOT NULL', ['id', 'SERIAL'], [$column::TYPE_IDENTIFIER, $column::TYPE_LITERAL]],
' ',
['PRIMARY KEY', [], []],
],
$column->getExpressionData()
);
}
}

0 comments on commit 07b5e38

Please sign in to comment.