Changes between Initial Version and Version 1 of Ticket #32226, comment 8


Ignore:
Timestamp:
Nov 29, 2020, 3:54:33 AM (3 years ago)
Author:
kosc

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #32226, comment 8

    initial v1  
    55Also, when I trying to replace single quotes with double quotes, I getting another error: "JSONDecodeError: Expecting value: line 1 column 55 (char 54)".
    66
    7 Here is a string returning by Django ORM: "[{'Plan': {'Node Type': 'Seq Scan', 'Parallel Aware': False, 'Relation Name': 'main_testmodel', 'Alias': 'main_testmodel', 'Startup Cost': 0.0, 'Total Cost': 11.4, 'Plan Rows': 140, 'Plan Width': 520}}]" (explain for simple TestModel.objects.all().explain(format='json')).
     7Here is a string returning by Django ORM: "[{'Plan': {'Node Type': 'Seq Scan', 'Parallel Aware': False, 'Relation Name': 'main_testmodel', 'Alias': 'main_testmodel', 'Startup Cost': 0.0, 'Total Cost': 11.4, 'Plan Rows': 140, 'Plan Width': 520}}]" (the query: TestModel.objects.all().explain(format='json')).
Back to Top