Skip to content

Fix inner query returning more than one result

Dian Fay requested to merge github/fork/jeancarlozapata/patch-1 into master

Created by: jeancarlozapata

On MySQL, only the first table was being exposed in the database object after connecting to the database.

The inner query returned more than one result, causing the external query to return only one table (the first one). Adding LIMIT 1 to the inner query fixes this issue.

Merge request reports