Skip to content

Commit

Permalink
Final cleanup before squashing.
Browse files Browse the repository at this point in the history
  • Loading branch information
sarcher committed Jul 31, 2015
1 parent 9ccc951 commit 09cf942
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ install:
- composer update --prefer-source

before_script:
- if [ $DB = 'pgsql' ]; then sudo service postgresql stop; sudo service postgresql start $POSTGRESQL_VERSION; fi
- if [ '$DB' = 'pgsql' ]; then sudo service postgresql stop; sudo service postgresql start $POSTGRESQL_VERSION; fi

script: ./vendor/bin/phpunit --configuration tests/travis/$DB.travis.xml

Expand All @@ -45,4 +45,4 @@ matrix:
addons:
postgresql: '9.4'

sudo: required
sudo: false
1 change: 1 addition & 0 deletions lib/Doctrine/DBAL/Schema/AbstractSchemaManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,7 @@ public function listTableColumns($table, $database = null)
}

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

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

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

0 comments on commit 09cf942

Please sign in to comment.