We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a03ec2d commit b6e74caCopy full SHA for b6e74ca
arango/collection.py
@@ -1387,7 +1387,7 @@ def add_skiplist_index(
1387
:rtype: dict
1388
:raise arango.exceptions.IndexCreateError: If create fails.
1389
"""
1390
- m = "add_skiplist_index is deprecated. Using add_index with {'type': 'persistent'} instead." # noqa: E501
+ m = "add_skiplist_index is deprecated. Using add_index with {'type': 'skiplist'} instead." # noqa: E501
1391
warn(m, DeprecationWarning, stacklevel=2)
1392
1393
data: Json = {"type": "skiplist", "fields": fields}
0 commit comments