Commit 028ded6a authored by Benjamin Eberlei's avatar Benjamin Eberlei

[DBAL-85] Fix listTablesSQL() not working in strict ansi mode.

parent a00764c4
......@@ -266,7 +266,7 @@ class MySqlPlatform extends AbstractPlatform
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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment