Skip to content

Commit

Permalink
Soon-to-be-removed commit to test Travis behavior.
Browse files Browse the repository at this point in the history
  • Loading branch information
sarcher committed Jul 31, 2015
1 parent 711ebc8 commit ffa7ba4
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion lib/Doctrine/DBAL/Schema/AbstractSchemaManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -169,9 +169,14 @@ public function listTableColumns($table, $database = null)
}

$sql = $this->_platform->getListTableColumnsSQL($table, $database);

$tableColumns = $this->_conn->fetchAll($sql);

// very temporary for examing result of test under Travis
if ($table == 'test_datetimetz_default_table') {
var_dump($sql);
var_dump($tableColumns);
}

return $this->_getPortableTableColumnList($table, $database, $tableColumns);
}

Expand Down

0 comments on commit ffa7ba4

Please sign in to comment.