github.com/cockroachdb/cockroach@v20.2.0-alpha.1+incompatible/pkg/sql/advancecode_string.go (about)

     1  // Code generated by "stringer -type=advanceCode"; DO NOT EDIT.
     2  
     3  package sql
     4  
     5  import "strconv"
     6  
     7  func _() {
     8  	// An "invalid array index" compiler error signifies that the constant values have changed.
     9  	// Re-run the stringer command to generate them again.
    10  	var x [1]struct{}
    11  	_ = x[advanceUnknown-0]
    12  	_ = x[stayInPlace-1]
    13  	_ = x[advanceOne-2]
    14  	_ = x[skipBatch-3]
    15  	_ = x[rewind-4]
    16  }
    17  
    18  const _advanceCode_name = "advanceUnknownstayInPlaceadvanceOneskipBatchrewind"
    19  
    20  var _advanceCode_index = [...]uint8{0, 14, 25, 35, 44, 50}
    21  
    22  func (i advanceCode) String() string {
    23  	if i < 0 || i >= advanceCode(len(_advanceCode_index)-1) {
    24  		return "advanceCode(" + strconv.FormatInt(int64(i), 10) + ")"
    25  	}
    26  	return _advanceCode_name[_advanceCode_index[i]:_advanceCode_index[i+1]]
    27  }