Changes between Initial Version and Version 1 of Ticket #33424
- Timestamp:
- Jan 7, 2022, 10:27:44 AM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #33424 – Description
initial v1 3 3 I encountered a bug in raw postgresql query 4 4 5 6 {{{ 5 7 from django.db.models import JSONField 6 8 from django.db import connection … … 16 18 results = [dict(zip(column_names, row)) for row in cursor.fetchall()] 17 19 20 }}} 21 18 22 19 23 The given result will have the job_dict column as string instead of dictionary