Skip to content

Commit

Permalink
[cds^8] No strings in INSERT.into and UPSERT.into (#966)
Browse files Browse the repository at this point in the history
No strings in INSERT.into and UPSERT.into
  • Loading branch information
hm23 authored Jun 17, 2024
1 parent c914b68 commit 98b3a40
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cds/cqn.md
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ CQN = {SELECT:{

```js
UPSERT = {UPSERT:{
into: (ref + { as:string }) | string,
into: ref + { as:string },
entries: [ ...{ ...column:any } ],
as: SELECT
}}
Expand All @@ -190,7 +190,7 @@ UPSERT = {UPSERT:{

```js
INSERT = {INSERT:{
into: (ref + { as:string }) | string,
into: ref + { as:string },
columns: [ ...string ],
values: [ ...any ],
rows: [ ...[ ...any ] ],
Expand Down

0 comments on commit 98b3a40

Please sign in to comment.