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

[map-map] Remove DELETE_1_3

parent 3727bb84
No related branches found
No related tags found
No related merge requests found
......@@ -207,8 +207,7 @@ static bool
request_check_type(uint32_t type)
{
return (type != REPLACE && type != SELECT &&
type != UPDATE && type != DELETE_1_3 &&
type != DELETE && type != CALL);
type != UPDATE && type != DELETE && type != CALL);
}
const char *
......@@ -272,7 +271,6 @@ request_create(struct request *request, uint32_t type, const char *data,
/* Do not parse the tail, tuple_update will do it */
request->u.expr_end = reqend;
break;
case DELETE_1_3:
case DELETE:
request->execute = execute_delete;
request->d.space_no = pick_u32(reqpos, reqend);
......
......@@ -65,7 +65,6 @@ struct port;
_(REPLACE, 13) \
_(SELECT, 17) \
_(UPDATE, 19) \
_(DELETE_1_3, 20) \
_(DELETE, 21) \
_(CALL, 22)
......
......@@ -23,9 +23,6 @@ box.stat()
UPDATE:
total: 0
rps: 0
DELETE_1_3:
total: 0
rps: 0
...
help()
---
......@@ -89,9 +86,6 @@ box.stat()
UPDATE:
total: 0
rps: 0
DELETE_1_3:
total: 0
rps: 0
...
box.insert(0, 1, 'tuple')
---
......
......@@ -52,7 +52,6 @@ t;
- REPLACE
- CALL
- UPDATE
- DELETE_1_3
- total
- rps
- total
......
......@@ -29,9 +29,6 @@ box.stat()
UPDATE:
total: 0
rps: 0
DELETE_1_3:
total: 0
rps: 0
...
--# stop server default
--# start server default
......@@ -53,9 +50,6 @@ box.stat()
UPDATE:
total: 0
rps: 0
DELETE_1_3:
total: 0
rps: 0
...
-- cleanup
box.space[0]:drop()
......
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