(self, compiler, connection, **extra_context)
| 74 | function = "CONCAT" |
| 75 | |
| 76 | def pipes_concat_sql(self, compiler, connection, **extra_context): |
| 77 | coalesced = self.coalesce() |
| 78 | return super(ConcatPair, coalesced).as_sql( |
| 79 | compiler, |
| 80 | connection, |
| 81 | template="(%(expressions)s)", |
| 82 | arg_joiner=" || ", |
| 83 | **extra_context, |
| 84 | ) |
| 85 | |
| 86 | as_sqlite = pipes_concat_sql |
| 87 |
no test coverage detected