Skip to content

Commit

Permalink
Search engine: use "UNION ALL" for union_search_type
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrienClairembault authored and cedric-anne committed Nov 15, 2023
1 parent da97153 commit 06e24e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Search.php
Original file line number Diff line number Diff line change
Expand Up @@ -1024,7 +1024,7 @@ public static function constructSQL(array &$data)
if ($first) {
$first = false;
} else {
$QUERY .= " UNION ";
$QUERY .= " UNION ALL ";
}
$tmpquery = "";
// AllAssets case
Expand Down

0 comments on commit 06e24e4

Please sign in to comment.