(typ *types.T, v Volatility)
| 1486 | } |
| 1487 | |
| 1488 | func makeEvalTupleIn(typ *types.T, v Volatility) *CmpOp { |
| 1489 | return &CmpOp{ |
| 1490 | LeftType: typ, |
| 1491 | RightType: types.AnyTuple, |
| 1492 | NullableArgs: true, |
| 1493 | Volatility: v, |
| 1494 | } |
| 1495 | } |
| 1496 | |
| 1497 | // MultipleResultsError is returned by QueryRow when more than one result is |
| 1498 | // encountered. |