-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
24 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -341,8 +341,7 @@ | |
person_id | ||
FROM posthog_persondistinctid | ||
WHERE team_id = 2 | ||
AND distinct_id IN ('example_id', | ||
'random') ), | ||
AND distinct_id = ANY('{example_id,random}') ), | ||
existing_overrides AS | ||
(SELECT team_id, | ||
person_id, | ||
|
@@ -371,8 +370,7 @@ | |
person_id | ||
FROM posthog_persondistinctid | ||
WHERE team_id = 2 | ||
AND distinct_id IN ('example_id', | ||
'random') ), | ||
AND distinct_id = ANY('{example_id,random}') ), | ||
existing_overrides AS | ||
(SELECT team_id, | ||
person_id, | ||
|
@@ -433,9 +431,9 @@ | |
--- | ||
# name: TestResiliency.test_feature_flags_v3_with_experience_continuity_working_slow_db.4 | ||
' | ||
SELECT (("posthog_person"."properties" -> 'email') = '"[email protected]"' | ||
SELECT (("posthog_person"."properties" -> 'email') = '"[email protected]"'::jsonb | ||
AND "posthog_person"."properties" ? 'email' | ||
AND NOT (("posthog_person"."properties" -> 'email') = 'null')) AS "flag_X_condition_0", | ||
AND NOT (("posthog_person"."properties" -> 'email') = 'null'::jsonb)) AS "flag_X_condition_0", | ||
(true) AS "flag_X_condition_0" | ||
FROM "posthog_person" | ||
INNER JOIN "posthog_persondistinctid" ON ("posthog_person"."id" = "posthog_persondistinctid"."person_id") | ||
|
@@ -453,8 +451,7 @@ | |
person_id | ||
FROM posthog_persondistinctid | ||
WHERE team_id = 2 | ||
AND distinct_id IN ('example_id', | ||
'random') ), | ||
AND distinct_id = ANY('{example_id,random}') ), | ||
existing_overrides AS | ||
(SELECT team_id, | ||
person_id, | ||
|
@@ -545,12 +542,12 @@ | |
' | ||
SELECT pg_sleep(1); | ||
|
||
SELECT (("posthog_person"."properties" -> 'email') = '"[email protected]"' | ||
SELECT (("posthog_person"."properties" -> 'email') = '"[email protected]"'::jsonb | ||
AND "posthog_person"."properties" ? 'email' | ||
AND NOT (("posthog_person"."properties" -> 'email') = 'null')) AS "flag_X_condition_0", | ||
(("posthog_person"."properties" -> 'email') = '"[email protected]"' | ||
AND NOT (("posthog_person"."properties" -> 'email') = 'null'::jsonb)) AS "flag_X_condition_0", | ||
(("posthog_person"."properties" -> 'email') = '"[email protected]"'::jsonb | ||
AND "posthog_person"."properties" ? 'email' | ||
AND NOT (("posthog_person"."properties" -> 'email') = 'null')) AS "flag_X_condition_0", | ||
AND NOT (("posthog_person"."properties" -> 'email') = 'null'::jsonb)) AS "flag_X_condition_0", | ||
(true) AS "flag_X_condition_0" | ||
FROM "posthog_person" | ||
INNER JOIN "posthog_persondistinctid" ON ("posthog_person"."id" = "posthog_persondistinctid"."person_id") | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters