Changes between Initial Version and Version 1 of Ticket #34955, comment 7
- Timestamp:
- Nov 8, 2023, 9:02:44 AM (12 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #34955, comment 7
initial v1 1 1 Throwing some fuel on the fire with a few fyi points 2 2 3 - Firstly just want to make it clear that pg marking concat() immutable is a feature (by design) not a bug :D (it's "stable" but "immutable" because settings can still affect the output)3 - Firstly just want to make it clear that pg marking concat() not immutable is a feature (by design) not a bug :D (it's "stable" but not "immutable" because settings can still affect the output) 4 4 - Apparently `||` is ANSI (TIL) 5 5 - Even though it is ANSI you still have to set mode `PIPES_AS_CONCAT` [1] on MySQL … … 19 19 [2] https://www.postgresql.org/docs/current/functions-string.html 20 20 [3] https://docs.python.org/3/reference/datamodel.html#emulating-numeric-types 21 22 Edit: I mean NOT immutable.