MCPcopy Create free account
hub / github.com/dolthub/doltgresql / String

Method String

postgres/parser/sem/tree/expr.go:456–461  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

454}
455
456func (i ComparisonOperator) String() string {
457 if i < 0 || i > ComparisonOperator(len(comparisonOpName)-1) {
458 return fmt.Sprintf("ComparisonOp(%d)", i)
459 }
460 return comparisonOpName[i]
461}
462
463// Inverse returns the inverse of this comparison operator if it exists. The
464// second return value is true if it exists, and false otherwise.

Callers

nothing calls this directly

Calls 1

ComparisonOperatorTypeAlias · 0.85

Tested by

no test coverage detected