Renaming span_multi_term query to span_multi
... due to discussing this on #2610 in order to have a more concise name
This commit is contained in:
parent
cffe333fe3
commit
31b4b7ea58
|
@ -34,7 +34,7 @@ import org.elasticsearch.common.xcontent.XContentParser.Token;
|
|||
*/
|
||||
public class SpanMultiTermQueryParser implements QueryParser {
|
||||
|
||||
public static final String NAME = "span_multi_term";
|
||||
public static final String NAME = "span_multi";
|
||||
public static final String MATCH_NAME = "match";
|
||||
|
||||
@Inject
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"span_multi_term":{
|
||||
"span_multi":{
|
||||
"match":{
|
||||
"fuzzy":{
|
||||
"age":{
|
||||
|
@ -10,4 +10,4 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"span_multi_term":{
|
||||
"span_multi":{
|
||||
"match":{
|
||||
"fuzzy" : {
|
||||
"user" : {
|
||||
|
@ -9,4 +9,4 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"span_multi_term":{
|
||||
"span_multi":{
|
||||
"match":{
|
||||
"prefix" : { "user" : { "value" : "ki", "boost" : 1.08 } }
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"span_multi_term":{
|
||||
"span_multi":{
|
||||
"match":{
|
||||
"range" : {
|
||||
"age" : {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"span_multi_term":{
|
||||
"span_multi":{
|
||||
"match":{
|
||||
"range" : {
|
||||
"age" : {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"span_multi_term":{
|
||||
"span_multi":{
|
||||
"match":{
|
||||
"wildcard" : { "user" : {"value": "ki*y" , "boost" : 1.08}}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue