We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3a83fc9 + 21ca306 commit d76b383Copy full SHA for d76b383
1 file changed
sp_BlitzIndex.sql
@@ -3194,7 +3194,6 @@ FROM #IndexSanity si
3194
3195
IF @Debug = 1
3196
BEGIN
3197
- SELECT '#BlitzIndexResults' AS table_name, * FROM #BlitzIndexResults AS bir;
3198
SELECT '#IndexSanity' AS table_name, * FROM #IndexSanity;
3199
SELECT '#IndexPartitionSanity' AS table_name, * FROM #IndexPartitionSanity;
3200
SELECT '#IndexSanitySize' AS table_name, * FROM #IndexSanitySize;
@@ -5921,6 +5920,11 @@ BEGIN
5921
5920
5922
END;
5923
+ IF (@Debug = 1)
5924
+ BEGIN
5925
+ SELECT '#BlitzIndexResults' AS table_name, * FROM #BlitzIndexResults;
5926
+ END;
5927
+
5928
RAISERROR(N'Returning results.', 0,1) WITH NOWAIT;
5929
5930
/*Return results.*/
0 commit comments