fix(sqllab): Missing executed sql value in the result table (#34846)

This commit is contained in:
JUST.in DO IT
2025-08-25 13:24:29 -07:00
committed by GitHub
parent 47414e18d4
commit b89b0bdf5d
2 changed files with 3 additions and 0 deletions

View File

@@ -194,6 +194,7 @@ const ResultSet = ({
'dbId',
'tab',
'sql',
'executedSql',
'sqlEditorId',
'templateParams',
'schema',
@@ -553,6 +554,7 @@ const ResultSet = ({
sql = (
<HighlightedSql
sql={query.sql}
rawSql={query.executedSql}
{...(showSqlInline && { maxLines: 1, maxWidth: 60 })}
/>
);