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
SELECT "taskLists"."id" AS "taskList", json_group_array(CASE WHEN ("tasks"."id" IS NOT NULL) THEN json_object('id', json_quote("tasks"."id"), 'notes', json("tasks"."notes"), 'taskListID', json_quote("tasks"."taskListID")) END) AS "tasks"
281
-
FROM "taskLists"
282
-
JOIN "tasks" ON ("taskLists"."id" = "tasks"."taskListID")
283
-
"""
284
-
} results:{
285
-
"""
286
-
no such table: taskLists
287
-
"""
288
-
}
289
-
}
290
270
}
291
271
}
292
-
/*
293
-
TODO: split json association tests into own suite with custom schema
294
-
* exercise Bool? path
295
-
* exercise Data/UUID path with JSON
296
-
* exercise dates
297
-
* exercise JSONRepresentation field (such as [String] notes)
298
-
* exercise path that removes the NULL filter to see how that can come up
0 commit comments