Changes between Version 1 and Version 2 of Ticket #34955, comment 7
- Timestamp:
- Nov 8, 2023, 9:14:44 AM (12 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #34955, comment 7
v1 v2 7 7 - Unfortunately we can't change `Concat()` to use `||` because on pg it _does_ evaluate NULLs. If it were to use `||` then we _would_ need to make use of `Coalesce()` to make it consistent. 8 8 9 I'm kinda hoping though that we do get a nimmutable concat for pg because concatenating strings seems to be a common desire, at least for me :D9 I'm kinda hoping though that we do get a (separate) immutable concat for pg because concatenating strings seems to be a common desire, at least for me :D 10 10 11 11 Lastly can I just say that (somewhat jokingly but semi-serious)... we may be missing the perfect opportunity to make use of the `__floordiv__()` operator method [3] ;D