(builder, algorithm)
| 1009 | } |
| 1010 | |
| 1011 | function getOperationClassForEagerAlgorithm(builder, algorithm) { |
| 1012 | if (algorithm === getJoinEagerAlgorithm(builder)) { |
| 1013 | return JoinEagerOperation; |
| 1014 | } else if (algorithm === getNaiveEagerAlgorithm(builder)) { |
| 1015 | return NaiveEagerOperation; |
| 1016 | } else { |
| 1017 | return WhereInEagerOperation; |
| 1018 | } |
| 1019 | } |
| 1020 | |
| 1021 | function parseRelationExpression(modelClass, exp) { |
| 1022 | try { |
no test coverage detected