Hello, The enum [QueryExecutionState](https://github.com/arangodb/arangodb-java-driver/blob/87e37e556e897fd3b4870c8e0ca0ac9b0c8e5e81/src/main/java/com/arangodb/entity/QueryExecutionState.java#L26) should be updated to contain the `KILLED` value like in the [corresponding C++ enum](https://github.com/arangodb/arangodb/blame/cefccee84bd248952ff74d8438bb5d65c18467a8/arangod/Aql/QueryExecutionState.h#L46). This missing enum value causes [this line](https://github.com/arangodb/arangodb-java-driver/blob/87e37e556e897fd3b4870c8e0ca0ac9b0c8e5e81/src/main/java/com/arangodb/internal/velocypack/VPackDeserializers.java#L151) to throw this exception: `com.arangodb.ArangoDBException: com.arangodb.velocypack.exception.VPackParserException: java.lang.IllegalArgumentException: No enum constant com.arangodb.entity.QueryExecutionState.KILLED` Thanks.