()
| 161 | return ")".equals(getJoinType()); |
| 162 | } |
| 163 | public boolean isAsofJoin() { |
| 164 | return "~".equals(getJoinType()); |
| 165 | } |
| 166 | |
| 167 | public boolean isLeftOrRightJoin() { |
| 168 | String jt = getJoinType(); |
nothing calls this directly
no test coverage detected