singlestore-labs / singlestoredb-laravel-driver

The official SingleStore Laravel driver.
https://github.com/singlestore-labs/singlestore-laravel-driver
Apache License 2.0
223 stars 22 forks source link

Fixed incorrect generation of union queries #46

Closed AdalbertMemSQL closed 1 year ago

AdalbertMemSQL commented 1 year ago

Changed to add SELECT * FROM before each union part. Changed to wrap the query before adding a final order by/limit/offset for union queries. This is needed because otherwise these clauses are applied only to the last union subquery.

closes #44