Changes between Version 4 and Version 8 of Ticket #1759
- Timestamp:
- Jun 11, 2018, 12:07:15 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1759
- Property Priority major → critical
- Property Milestone 9.6 → 9.7
-
Ticket #1759 – Description
v4 v8 7 7 What's missing in the syntax is support for specifying multiple collections, e.g. 8 8 {{{ 9 UPDATE A , BSET A[..]9 UPDATE A SET A[..] 10 10 ASSIGN B 11 WHERE oid(B) = .. 11 FROM B 12 12 }}} 13 14 Formally speaking, the solution should take the current "UPDATE" options and extend them using a "FROM" clause. This can be achieved by introducing syntax for the following grammar constructions: 15 16 Added UPDATE grammar: 17 {{{ 18 updateExp : update iteratedCollection set updateSpec 19 assign generalExp 20 where generalExp 21 from collectionList 22 }}} 23 24 and 25 26 {{{ 27 update iteratedCollection set updateSpec 28 assign generalExp 29 from collectionList 30 }}} 31