MCPcopy Create free account
hub / github.com/cockroachdb/cockroachdb-parser / makeLeFn

Function makeLeFn

pkg/sql/sem/tree/eval.go:1591–1593  ·  view source on GitHub ↗
(a, b *types.T, v volatility.V)

Source from the content-addressed store, hash-verified

1589 return makeCmpOpOverload(treecmp.LT, a, b, false, v)
1590}
1591func makeLeFn(a, b *types.T, v volatility.V) *CmpOp {
1592 return makeCmpOpOverload(treecmp.LE, a, b, false, v)
1593}
1594func makeIsFn(a, b *types.T, v volatility.V) *CmpOp {
1595 return makeCmpOpOverload(treecmp.IsNotDistinctFrom, a, b, true, v)
1596}

Callers 1

eval.goFile · 0.85

Calls 1

makeCmpOpOverloadFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…