You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Tests/StructuredQueriesTests/DatabaseFunctionTests.swift
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -288,10 +288,10 @@ extension SnapshotTests {
288
288
.select{$joinTags($2.jsonGroupArray())}
289
289
){
290
290
"""
291
-
SELECT "joinTags"(json_group_array(CASE WHEN ("tags"."rowid" IS NOT NULL) THEN json_object('id', json_quote("tags"."id"), 'title', json_quote("tags"."title")) END) FILTER (WHERE ("tags"."id" IS NOT NULL)))
291
+
SELECT "joinTags"(json_group_array(CASE WHEN ("tags"."rowid") IS NOT (NULL) THEN json_object('id', json_quote("tags"."id"), 'title', json_quote("tags"."title")) END) FILTER (WHERE ("tags"."id") IS NOT (NULL)))
292
292
FROM "reminders"
293
-
LEFT JOIN "remindersTags" ON ("reminders"."id" = "remindersTags"."reminderID")
294
-
LEFT JOIN "tags" ON ("remindersTags"."tagID" = "tags"."id")
293
+
LEFT JOIN "remindersTags" ON ("reminders"."id") = ("remindersTags"."reminderID")
294
+
LEFT JOIN "tags" ON ("remindersTags"."tagID") = ("tags"."id")
0 commit comments