Creates a reference to a given field in a row type.
(int index, RelDataType rowType)
| 85 | * Creates a reference to a given field in a row type. |
| 86 | */ |
| 87 | public static RexInputRef of(int index, RelDataType rowType) { |
| 88 | return of(index, rowType.getFieldList()); |
| 89 | } |
| 90 | |
| 91 | /** |
| 92 | * Creates a reference to a given field in a list of fields. |