clarity20 / tql

Terse Query Language
1 stars 0 forks source link

Implement C-like operators +=, etc. for SET clauses #36

Closed clarity20 closed 5 years ago

clarity20 commented 5 years ago

Upon detecting arithmetic operators, the parser should scan forward for a trailing equals sign and avoid prematurely unraveling them. (Keeping the originals in place would be very helpful in case we need to denude the parsed stream later on.) Consistency with the existing design is another reason we should defer the unraveling of these syntactic conveniences until the SQL construction phase.

clarity20 commented 5 years ago

Duplicates #26.