MCPcopy Create free account
hub / github.com/auxten/postgresql-parser / String

Method String

pkg/sql/sem/tree/expr.go:384–389  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

382}
383
384func (i ComparisonOperator) String() string {
385 if i < 0 || i > ComparisonOperator(len(comparisonOpName)-1) {
386 return fmt.Sprintf("ComparisonOp(%d)", i)
387 }
388 return comparisonOpName[i]
389}
390
391// Inverse returns the inverse of this comparison operator if it exists. The
392// 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