Skip to content

Commit 21ca306

Browse files
committed
fix for #3776
1 parent 5184a1b commit 21ca306

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

sp_BlitzIndex.sql

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3194,7 +3194,6 @@ FROM #IndexSanity si
31943194

31953195
IF @Debug = 1
31963196
BEGIN
3197-
SELECT '#BlitzIndexResults' AS table_name, * FROM #BlitzIndexResults AS bir;
31983197
SELECT '#IndexSanity' AS table_name, * FROM #IndexSanity;
31993198
SELECT '#IndexPartitionSanity' AS table_name, * FROM #IndexPartitionSanity;
32003199
SELECT '#IndexSanitySize' AS table_name, * FROM #IndexSanitySize;
@@ -5899,6 +5898,11 @@ BEGIN
58995898

59005899
END;
59015900

5901+
IF (@Debug = 1)
5902+
BEGIN
5903+
SELECT '#BlitzIndexResults' AS table_name, * FROM #BlitzIndexResults;
5904+
END;
5905+
59025906
RAISERROR(N'Returning results.', 0,1) WITH NOWAIT;
59035907

59045908
/*Return results.*/

0 commit comments

Comments
 (0)