()
| 347 | return ls.JoinType.Type == token.LEFT || ls.JoinType.Type == token.FULL |
| 348 | } |
| 349 | func (ls JoinCommand) ShouldTakeRightSide() bool { |
| 350 | return ls.JoinType.Type == token.RIGHT || ls.JoinType.Type == token.FULL |
| 351 | } |
| 352 | |
| 353 | // DeleteCommand - Part of Command that represent deleting row from table |
| 354 | // |