From bf393b300de3b46645658e001ed3ed0cb3993441 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrian=20G=C3=B6rler?= Date: Thu, 24 Sep 2026 09:52:17 +0200 Subject: [PATCH 1/2] Update query-execution.md --- java/working-with-cql/query-execution.md | 1 + 1 file changed, 1 insertion(+) diff --git a/java/working-with-cql/query-execution.md b/java/working-with-cql/query-execution.md index 866e4bb0c6..2df2498f75 100644 --- a/java/working-with-cql/query-execution.md +++ b/java/working-with-cql/query-execution.md @@ -257,6 +257,7 @@ CDS views must fulfill the following requirements to be resolvable: - The view is a simple [projection](../../cds/cdl#as-projection-on), not using *aggregations*, *join*, *union*, or *where*. - The projection includes all *not null* elements (incl. keys), unless they have a default or generated value. - The projection does not include [path expressions](../../cds/cql#path-expressions) using *to-many* associations. +- The projection does not include path expression via [mixed-in](../../cds/cql#query-local-mixins) associations. If the runtime cannot resolve a view, the write operation is executed directly on the database view and the execution depends on the [database](../cqn-services/persistence-services#database-support) support. From 00324106f653968871213e350d7f9075facf487a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrian=20G=C3=B6rler?= Date: Thu, 24 Sep 2026 09:53:22 +0200 Subject: [PATCH 2/2] Update query-execution.md --- java/working-with-cql/query-execution.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/working-with-cql/query-execution.md b/java/working-with-cql/query-execution.md index 2df2498f75..a60420fdeb 100644 --- a/java/working-with-cql/query-execution.md +++ b/java/working-with-cql/query-execution.md @@ -257,7 +257,7 @@ CDS views must fulfill the following requirements to be resolvable: - The view is a simple [projection](../../cds/cdl#as-projection-on), not using *aggregations*, *join*, *union*, or *where*. - The projection includes all *not null* elements (incl. keys), unless they have a default or generated value. - The projection does not include [path expressions](../../cds/cql#path-expressions) using *to-many* associations. -- The projection does not include path expression via [mixed-in](../../cds/cql#query-local-mixins) associations. +- The projection does not include path expression over [mixed-in](../../cds/cql#query-local-mixins) associations. If the runtime cannot resolve a view, the write operation is executed directly on the database view and the execution depends on the [database](../cqn-services/persistence-services#database-support) support.