From 65ad65d2b43199b76e5f806e19ad249c95ccaae7 Mon Sep 17 00:00:00 2001 From: babyfish-ct Date: Fri, 18 Feb 2022 21:12:02 +0800 Subject: [PATCH] Update contains.md --- doc/kimmer-sql/contains.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/kimmer-sql/contains.md b/doc/kimmer-sql/contains.md index c5638ab..d6ea051 100644 --- a/doc/kimmer-sql/contains.md +++ b/doc/kimmer-sql/contains.md @@ -135,7 +135,7 @@ public val Table.`authors?`: Table // δ 1. *α* and *β*, the collection join *Book::authors* is allowed to be used by subqueries. 2. *γ* and *δ*, the collection join *Book::authors* is allowed to be used by top level queries. -When *kimmer.table.collection-join-only-for-sub-query* is false, the source code generated by kimmer-ksp is +When *kimmer.table.collection-join-only-for-sub-query* is true, the source code generated by kimmer-ksp is ```kt public val SubQueryTable.authors: NonNullSubQueryTable get() = joinList(Book::authors)