(typ *types.T, v volatility.V)
| 2139 | } |
| 2140 | |
| 2141 | func makeEvalTupleIn(typ *types.T, v volatility.V) *CmpOp { |
| 2142 | return &CmpOp{ |
| 2143 | LeftType: typ, |
| 2144 | RightType: types.AnyTuple, |
| 2145 | EvalOp: &InTupleOp{}, |
| 2146 | CalledOnNullInput: true, |
| 2147 | Volatility: v, |
| 2148 | } |
| 2149 | } |
| 2150 | |
| 2151 | // MultipleResultsError is returned by QueryRow when more than one result is |
| 2152 | // encountered. |
no outgoing calls
no test coverage detected
searching dependent graphs…