github.com/balzaczyy/golucene@v0.0.0-20151210033525-d0be9ee89713/core/index/docValuesUpdate.go (about)

     1  package index
     2  
     3  /* An in-place update to a DocValues field. */
     4  type DocValuesUpdate struct {
     5  	valueSizeInBytes func() int64
     6  }
     7  
     8  func (u *DocValuesUpdate) sizeInBytes() int {
     9  	panic("not implemented yet")
    10  }
    11  
    12  func (u *DocValuesUpdate) String() string {
    13  	panic("not implemented yet")
    14  }
    15  
    16  /* An in-place update to a binary DocValues field */
    17  func newBinaryDocValuesUpdate(term *Term, field string, value []byte) *DocValuesUpdate {
    18  	panic("not implemented yet")
    19  }
    20  
    21  /* An in-plsace update to a numeric DocValues field */
    22  func newNumericDocValuesUpdate(term *Term, field string, value int64) *DocValuesUpdate {
    23  	panic("not implemented yet")
    24  }