Skip to content

Commit

Permalink
Create table.
Browse files Browse the repository at this point in the history
  • Loading branch information
yunosh committed Sep 1, 2016
1 parent e267b96 commit bb1b2a0
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions framework/Db/test/Horde/Db/Adapter/Oci8Test.php
Original file line number Diff line number Diff line change
Expand Up @@ -336,6 +336,9 @@ public function testAddColumnOptionsNotNull()

public function testBug14163()
{
$table = $this->_conn->createTable('binary_testings');
$table->column('data', 'binary', array('null' => false));
$table->end();
$blob = new Horde_Db_Value_Binary('foo');
$this->_conn->insertBlob('binary_testings', array('data' => $blob));
$this->_conn->updateBlob('binary_testings', array('data' => ''));
Expand Down

0 comments on commit bb1b2a0

Please sign in to comment.