Skip to content

Commit a7a7221

Browse files
committed
#559 sp_BlitzCache fix varbinary conversion error
Closes #559.
1 parent 9eae691 commit a7a7221

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sp_BlitzCache.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -905,7 +905,7 @@ BEGIN
905905

906906
INSERT #only_sql_handles
907907
( sql_handle )
908-
SELECT ISNULL(deps.sql_handle, '')
908+
SELECT ISNULL(deps.sql_handle, CONVERT(VARBINARY(64),''))
909909
FROM sys.dm_exec_procedure_stats AS deps
910910
WHERE OBJECT_NAME(deps.object_id, deps.database_id) = @StoredProcName
911911

0 commit comments

Comments
 (0)