The code above should output "SELECT id, title FROM #__content WHERE title LIKE 'A%' UNION ALL (SELECT id, title FROM #__content WHERE title LIKE 'B%')".
Actual result
At the moment the output is "SELECT id, title FROM #__content WHERE title LIKE 'A%'".
I've merged two pull requests, but I don't know why. The file to pull is the first one with the id: 22a262d
Do you think I have to close this pull request and open a new one?
If you use union and order, you will always get the error:
unionAll doesn't work properly. The string you entered into the unionAll method was never appended to the SQL query
Expected result
The code above should output
"SELECT id, title FROM #__content WHERE title LIKE 'A%' UNION ALL (SELECT id, title FROM #__content WHERE title LIKE 'B%')"
.Actual result
At the moment the output is
"SELECT id, title FROM #__content WHERE title LIKE 'A%'"
.