I have a query that does a multi_match search with custom field boost, but ES 5.3 java client also appends the default field weight.
So, I expect something to be like title^10, 10 is custom weight that I want, but I see the java client modifies it to title^10^1.0.
How can I remove ^1.0 or notify java code not to add default?