(List<RexNode> operands, int before, int after)
| 4164 | } |
| 4165 | |
| 4166 | private static void fix(List<RexNode> operands, int before, int after) { |
| 4167 | if (before == after) { |
| 4168 | return; |
| 4169 | } |
| 4170 | operands.replaceAll(e -> RexUtil.shift(e, before, after - before)); |
| 4171 | } |
| 4172 | |
| 4173 | /** |
| 4174 | * Determines whether any of the fields in a given relational expression may |
no test coverage detected