Hi,
When i create a match query with fuzziness = "AUTO:3,10", the query is formed is fuzziness=AUTO. 3 and 10 is missing from the query.
QueryBuilders.matchQuery("MY_FIELD_NAME", fieldNameValue).fuzziness("AUTO:3,10");
The query created by this java code ignores "3,10".
Is there any body who is facing this problem ? To me, it seems to be a bug in existing java library.