Skip to content
This repository was archived by the owner on Aug 28, 2024. It is now read-only.

Commit 35a47e1

Browse files
Add missing space in the EXPLAIN query in ps_trace_statement_digest()
1 parent 4533181 commit 35a47e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

procedures/ps_trace_statement_digest.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ BEGIN
278278
DROP TEMPORARY TABLE stmt_trace;
279279
DROP TEMPORARY TABLE stmt_stages;
280280

281-
SET @stmt := CONCAT("EXPLAIN FORMAT=JSON", @sql);
281+
SET @stmt := CONCAT("EXPLAIN FORMAT=JSON ", @sql);
282282
PREPARE explain_stmt FROM @stmt;
283283
EXECUTE explain_stmt;
284284
DEALLOCATE PREPARE explain_stmt;

0 commit comments

Comments
 (0)