(self, other)
| 183 | return SQLQuery(self.items + items) |
| 184 | |
| 185 | def __radd__(self, other): |
| 186 | if isinstance(other, str): |
| 187 | items = [other] |
| 188 | elif isinstance(other, SQLQuery): |
| 189 | items = other.items |
| 190 | else: |
| 191 | return NotImplemented |
| 192 | return SQLQuery(items + self.items) |
| 193 | |
| 194 | def __iadd__(self, other): |
| 195 | if isinstance(other, (str, SQLParam)): |