Changes between Version 1 and Version 2 of Ticket #36906, comment 6
- Timestamp:
- Mar 8, 2026, 12:12:24 PM (2 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #36906, comment 6
v1 v2 1 1 Unexpectedly after writing test, I found out `postgres` does throw similar error. However, my implementation doesn't negatively affect `oracle, mysql, mariadb, sqlite` (I ran db test in my local and pipeline, no evidence of failure regarding those DBs). 2 2 3 ` 3 4 {{{ 4 5 File "/django/source/django/db/backends/utils.py", line 92, in _execute_with_wrappers 5 6 return executor(sql, params, many, context) … … 16 17 django.db.utils.ProgrammingError: COALESCE types character varying and jsonb cannot be matched 17 18 LINE 1: ...data", COALESCE("db_functions_article"."summary", "db_functi... 18 ` 19 }}}