1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

Fix full outer join bug (#1820)

Co-authored-by: sjaanus <sellinjaanus@gmail.com>
This commit is contained in:
sellinjaanus 2022-07-14 11:11:22 +00:00 committed by GitHub
parent c8f6c5cc75
commit 7da461cc9f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -105,7 +105,7 @@ export default class FeatureToggleClientStore
`fss.feature_strategy_id`, `fss.feature_strategy_id`,
`fs.id`, `fs.id`,
) )
.fullOuterJoin('segments', `segments.id`, `fss.segment_id`); .leftJoin('segments', `segments.id`, `fss.segment_id`);
if (featureQuery) { if (featureQuery) {
if (featureQuery.tag) { if (featureQuery.tag) {