Implement the 'concat' operator. In a column context, produces the clause ``a || b``, or uses the ``concat()`` operator on MySQL.
(self, other: Any)
| 877 | return self.reverse_operate(matmul, other) |
| 878 | |
| 879 | def concat(self, other: Any) -> ColumnOperators: |
| 880 | """Implement the 'concat' operator. |
| 881 | |
| 882 | In a column context, produces the clause ``a || b``, |
| 883 | or uses the ``concat()`` operator on MySQL. |
| 884 | |
| 885 | """ |
| 886 | return self.operate(concat_op, other) |
| 887 | |
| 888 | def _rconcat(self, other: Any) -> ColumnOperators: |
| 889 | """Implement an 'rconcat' operator. |