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.
2 parents 469fe65 + 7fdf602 commit 52dbf3dCopy full SHA for 52dbf3d
sp_BlitzCache.sql
@@ -4072,12 +4072,12 @@ SELECT @@SPID AS SPID,
4072
AND ci.comma_paren_charindex > 0
4073
THEN SUBSTRING(ci.expression, ci.paren_charindex, ci.comma_paren_charindex)
4074
END AS converted_to,
4075
- CASE WHEN ci.at_charindex = 0
+ LEFT(CASE WHEN ci.at_charindex = 0
4076
AND ci.convert_implicit_charindex = 0
4077
AND ci.proc_name = 'Statement'
4078
THEN SUBSTRING(ci.expression, ci.equal_charindex, 4000)
4079
ELSE '**idk_man**'
4080
- END AS compile_time_value
+ END, 258) AS compile_time_value
4081
FROM #conversion_info AS ci
4082
OPTION (RECOMPILE);
4083
0 commit comments