File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -12,8 +12,8 @@ public function testStandardSelect()
1212 {
1313 $ magicQuery = new MagicQuery ();
1414
15- $ sql = "SELECT GROUP_CONCAT(u. id SEPARATOR ', ') AS ids FROM users " ;
16- $ this ->assertEquals ("SELECT GROUP_CONCAT(u. id SEPARATOR ', ') AS ids FROM users " , self ::simplifySql ($ magicQuery ->build ($ sql )));
15+ $ sql = "SELECT GROUP_CONCAT(id SEPARATOR ', ') AS ids FROM users " ;
16+ $ this ->assertEquals ("SELECT GROUP_CONCAT(id SEPARATOR ', ') AS ids FROM users " , self ::simplifySql ($ magicQuery ->build ($ sql )));
1717
1818 $ sql = "SELECT id FROM users WHERE name LIKE :name LIMIT :offset, :limit " ;
1919 $ this ->assertEquals ("SELECT id FROM users WHERE name LIKE 'foo' " , self ::simplifySql ($ magicQuery ->build ($ sql , ['name ' => 'foo ' ])));
You can’t perform that action at this time.
0 commit comments