Changes between Initial Version and Version 1 of Ticket #33424


Ignore:
Timestamp:
Jan 7, 2022, 10:27:44 AM (3 years ago)
Author:
nitishxp
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #33424 – Description

    initial v1  
    33I encountered a bug in raw postgresql query
    44
     5
     6{{{
    57from django.db.models import JSONField
    68from django.db import connection
     
    1618            results = [dict(zip(column_names, row)) for row in cursor.fetchall()]
    1719
     20}}}
     21
    1822
    1923The given result will have the job_dict column as string instead of dictionary
Back to Top