We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57053f7 commit 87b7c31Copy full SHA for 87b7c31
debug_toolbar/panels/sql/panel.py
@@ -3,6 +3,7 @@
3
import uuid
4
from collections import defaultdict
5
from copy import copy
6
+from pprint import pformat
7
8
from django.conf.urls import url
9
from django.db import connections
@@ -150,7 +151,7 @@ def similar_key(query):
150
151
152
def duplicate_key(query):
153
raw_params = () if query['raw_params'] is None else tuple(query['raw_params'])
- return (query['raw_sql'], raw_params)
154
+ return (query['raw_sql'], pformat(raw_params))
155
156
if self._queries:
157
width_ratio_tally = 0
0 commit comments