()
| 152 | return "!".equals(getJoinType()); |
| 153 | } |
| 154 | public boolean isSideJoin() { |
| 155 | return "^".equals(getJoinType()); |
| 156 | } |
| 157 | public boolean isAntiJoin() { |
| 158 | return "(".equals(getJoinType()); |
| 159 | } |
nothing calls this directly
no test coverage detected