Patch drizzle to add leftJoinLateral

This commit is contained in:
Zoe Roux
2025-03-04 09:41:12 +01:00
parent 0558222150
commit 477fb24036
4 changed files with 119 additions and 2 deletions
+1 -1
View File
@@ -148,7 +148,7 @@ async function getEntries({
})
.from(entries)
.innerJoin(transQ, eq(entries.pk, transQ.pk))
.leftJoin(videosJ, sql`true`)
.leftJoinLateral(videosJ, sql`true`)
.where(
and(
filter,