executeTakeFirst does not add limit(1). Why?
If my understanding is correct, there is never any reason not to limit(1) when you do an executeTakeFirst.
1 Reply
Kysely never adds anything to the SQL you don't explicitly ask. Just call
limit(1)
.