Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion clickhouse_backend/backend/operations.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ class DatabaseOperations(BaseDatabaseOperations):
explain_types = {
"AST",
"SYNTAX",
"QUERY TREE",
"PLAN",
"PIPELINE",
"ESTIMATE",
Expand Down Expand Up @@ -342,7 +343,7 @@ def explain_query(self, format=None, type=None, **settings):

if format:
supported_formats = self.supported_output_formats
normalized_format = format.upper()
normalized_format = format # case-sensitive
if normalized_format not in supported_formats:
msg = "%s is not a recognized format." % normalized_format
if supported_formats:
Expand Down
Loading