mirror of https://gitee.com/bigwinds/arangodb
16 lines
526 B
Plaintext
16 lines
526 B
Plaintext
arango> db.example.ensureSkiplist("a", "b");
|
|
{ "id" : "73650/1577138", "unique" : false, "type" : "skiplist", "fields" : ["a", "b"], "isNewlyCreated" : true }
|
|
|
|
arango> i = db.example.getIndexes();
|
|
[{ "id" : "73650/0", "type" : "primary", "fields" : ["_id"] },
|
|
{ "id" : "73650/1577138", "unique" : false, "type" : "skiplist", "fields" : ["a", "b"] }]
|
|
|
|
arango> db._dropIndex(i[0]);
|
|
false
|
|
|
|
arango> db._dropIndex(i[1].id);
|
|
true
|
|
|
|
arango> i = db.example.getIndexes();
|
|
[{ "id" : "73650/0", "type" : "primary", "fields" : ["_id"] }]
|