Skip to content
Snippets Groups Projects
Commit ccd9c0b1 authored by Konstantin Osipov's avatar Konstantin Osipov
Browse files

The new protocol: remove an unsupported key from replace/insert grammar.

parent a53cf4ab
No related branches found
No related tags found
No related merge requests found
......@@ -124,11 +124,11 @@
<select> ::= <space_id> | <index_id> | <iterator> | <offset> | <limit> | <key>
; Insert a tuple into the space or replace an existing one.
<replace> ::= <space_id> | <index_id> | <tuple>
<replace> ::= <space_id> | <tuple>
; Insert is similar to replace, but will return a duplicate key
; error if such tuple already exists.
<insert> ::= <space_id> | <index_id> | <tuple>
<insert> ::= <space_id> | <tuple>
; Delete a tuple
<delete> ::= <space_id> | <index_id> | <key>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment