mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-29 10:57:44 +09:00 
			
		
		
		
	Update to last common bleve (#3986)
This commit is contained in:
		
				
					committed by
					
						 Lunny Xiao
						Lunny Xiao
					
				
			
			
				
	
			
			
			
						parent
						
							1b7cd3d0b0
						
					
				
				
					commit
					917b9641ec
				
			
							
								
								
									
										26
									
								
								vendor/github.com/blevesearch/bleve/mapping/field.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										26
									
								
								vendor/github.com/blevesearch/bleve/mapping/field.go
									
									
									
										generated
									
									
										vendored
									
									
								
							| @@ -26,8 +26,9 @@ import ( | ||||
|  | ||||
| // control the default behavior for dynamic fields (those not explicitly mapped) | ||||
| var ( | ||||
| 	IndexDynamic = true | ||||
| 	StoreDynamic = true | ||||
| 	IndexDynamic     = true | ||||
| 	StoreDynamic     = true | ||||
| 	DocValuesDynamic = true // TODO revisit default? | ||||
| ) | ||||
|  | ||||
| // A FieldMapping describes how a specific item | ||||
| @@ -54,6 +55,10 @@ type FieldMapping struct { | ||||
| 	IncludeTermVectors bool   `json:"include_term_vectors,omitempty"` | ||||
| 	IncludeInAll       bool   `json:"include_in_all,omitempty"` | ||||
| 	DateFormat         string `json:"date_format,omitempty"` | ||||
|  | ||||
| 	// DocValues, if true makes the index uninverting possible for this field | ||||
| 	// It is useful for faceting and sorting queries. | ||||
| 	DocValues bool `json:"docvalues,omitempty"` | ||||
| } | ||||
|  | ||||
| // NewTextFieldMapping returns a default field mapping for text | ||||
| @@ -64,6 +69,7 @@ func NewTextFieldMapping() *FieldMapping { | ||||
| 		Index:              true, | ||||
| 		IncludeTermVectors: true, | ||||
| 		IncludeInAll:       true, | ||||
| 		DocValues:          true, | ||||
| 	} | ||||
| } | ||||
|  | ||||
| @@ -71,6 +77,7 @@ func newTextFieldMappingDynamic(im *IndexMappingImpl) *FieldMapping { | ||||
| 	rv := NewTextFieldMapping() | ||||
| 	rv.Store = im.StoreDynamic | ||||
| 	rv.Index = im.IndexDynamic | ||||
| 	rv.DocValues = im.DocValuesDynamic | ||||
| 	return rv | ||||
| } | ||||
|  | ||||
| @@ -81,6 +88,7 @@ func NewNumericFieldMapping() *FieldMapping { | ||||
| 		Store:        true, | ||||
| 		Index:        true, | ||||
| 		IncludeInAll: true, | ||||
| 		DocValues:    true, | ||||
| 	} | ||||
| } | ||||
|  | ||||
| @@ -88,6 +96,7 @@ func newNumericFieldMappingDynamic(im *IndexMappingImpl) *FieldMapping { | ||||
| 	rv := NewNumericFieldMapping() | ||||
| 	rv.Store = im.StoreDynamic | ||||
| 	rv.Index = im.IndexDynamic | ||||
| 	rv.DocValues = im.DocValuesDynamic | ||||
| 	return rv | ||||
| } | ||||
|  | ||||
| @@ -98,6 +107,7 @@ func NewDateTimeFieldMapping() *FieldMapping { | ||||
| 		Store:        true, | ||||
| 		Index:        true, | ||||
| 		IncludeInAll: true, | ||||
| 		DocValues:    true, | ||||
| 	} | ||||
| } | ||||
|  | ||||
| @@ -105,6 +115,7 @@ func newDateTimeFieldMappingDynamic(im *IndexMappingImpl) *FieldMapping { | ||||
| 	rv := NewDateTimeFieldMapping() | ||||
| 	rv.Store = im.StoreDynamic | ||||
| 	rv.Index = im.IndexDynamic | ||||
| 	rv.DocValues = im.DocValuesDynamic | ||||
| 	return rv | ||||
| } | ||||
|  | ||||
| @@ -115,6 +126,7 @@ func NewBooleanFieldMapping() *FieldMapping { | ||||
| 		Store:        true, | ||||
| 		Index:        true, | ||||
| 		IncludeInAll: true, | ||||
| 		DocValues:    true, | ||||
| 	} | ||||
| } | ||||
|  | ||||
| @@ -122,6 +134,7 @@ func newBooleanFieldMappingDynamic(im *IndexMappingImpl) *FieldMapping { | ||||
| 	rv := NewBooleanFieldMapping() | ||||
| 	rv.Store = im.StoreDynamic | ||||
| 	rv.Index = im.IndexDynamic | ||||
| 	rv.DocValues = im.DocValuesDynamic | ||||
| 	return rv | ||||
| } | ||||
|  | ||||
| @@ -132,6 +145,7 @@ func NewGeoPointFieldMapping() *FieldMapping { | ||||
| 		Store:        true, | ||||
| 		Index:        true, | ||||
| 		IncludeInAll: true, | ||||
| 		DocValues:    true, | ||||
| 	} | ||||
| } | ||||
|  | ||||
| @@ -147,6 +161,9 @@ func (fm *FieldMapping) Options() document.IndexingOptions { | ||||
| 	if fm.IncludeTermVectors { | ||||
| 		rv |= document.IncludeTermVectors | ||||
| 	} | ||||
| 	if fm.DocValues { | ||||
| 		rv |= document.DocValues | ||||
| 	} | ||||
| 	return rv | ||||
| } | ||||
|  | ||||
| @@ -308,6 +325,11 @@ func (fm *FieldMapping) UnmarshalJSON(data []byte) error { | ||||
| 			if err != nil { | ||||
| 				return err | ||||
| 			} | ||||
| 		case "docvalues": | ||||
| 			err := json.Unmarshal(v, &fm.DocValues) | ||||
| 			if err != nil { | ||||
| 				return err | ||||
| 			} | ||||
| 		default: | ||||
| 			invalidKeys = append(invalidKeys, k) | ||||
| 		} | ||||
|   | ||||
		Reference in New Issue
	
	Block a user