MCPcopy
hub / github.com/sqlc-dev/sqlc / String

Method String

internal/sql/ast/set_operation.go:18–31  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

16}
17
18func (n SetOperation) String() string {
19 switch n {
20 case None:
21 return "None"
22 case Union:
23 return "Union"
24 case Intersect:
25 return "Intersect"
26 case Except:
27 return "Except"
28 default:
29 return "Unknown(" + strconv.FormatUint(uint64(n), 10) + ")"
30 }
31}

Callers 2

FormatMethod · 0.45
FormatFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected