(self, other)
| 174 | self.items.append(value) |
| 175 | |
| 176 | def __add__(self, other): |
| 177 | if isinstance(other, str): |
| 178 | items = [other] |
| 179 | elif isinstance(other, SQLQuery): |
| 180 | items = other.items |
| 181 | else: |
| 182 | return NotImplemented |
| 183 | return SQLQuery(self.items + items) |
| 184 | |
| 185 | def __radd__(self, other): |
| 186 | if isinstance(other, str): |