Closed
Description
Hi, I found a bitarray index in [Web Interfacce -> API -> /index].
Is this function ready?
It makes server down in following case.
Environment:
OS: CentOS 6.3
ArangoDB: version 1.4.0
OK: endpoint -> /_db/_system/_api/index
echo '{"name":"col1"}' | \
curl -X POST -d @- http://localhost:8529/_api/collection
echo '{"type":"bitarray","unique":false,"fields":["a","b"]}' | \
curl -X POST -d @- http://localhost:8529/_db/_system/_api/index?collection-name=col1
> {"error":true,"code":400,"errorNum":400,"errorMessage":"expecting a collection name or identifier"}
NG: endpoint -> /_api/index
echo '{"type":"bitarray","unique":false,"fields":["a","b"]}' | \
curl -X POST -d @- http://localhost:8529/_api/index?collection=col1
> curl: (52) Empty reply from server
It makes server down.