Skip to content

Instantly share code, notes, and snippets.

@doctrinebot
Created December 13, 2015 18:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save doctrinebot/ece78f89be32f900880f to your computer and use it in GitHub Desktop.
Save doctrinebot/ece78f89be32f900880f to your computer and use it in GitHub Desktop.
Attachments to Doctrine Jira Issue DBAL-85 - https://github.com/doctrine/dbal/issues/2086
--- ./lib/vendor/doctrine-dbal/lib/Doctrine/DBAL/Platforms/MySqlPlatform.php 2011-02-08 10:41:59.000000000 +0100
+++ ./lib/vendor/doctrine-dbal/lib/Doctrine/DBAL/Platforms/MySqlPlatform.php 2011-02-08 10:40:29.000000000 +0100
@@ -282,7 +282,7 @@ class MySqlPlatform extends AbstractPlat
public function getListTablesSQL()
{
- return 'SHOW FULL TABLES WHERE Table_type = "BASE TABLE"';
+ return 'SHOW FULL TABLES WHERE Table_type = \'BASE TABLE\'';
}
public function getListTableColumnsSQL($table)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment