We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5184a1b commit 21ca306Copy full SHA for 21ca306
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;
@@ -5899,6 +5898,11 @@ BEGIN
5899
5898
5900
END;
5901
+ IF (@Debug = 1)
5902
+ BEGIN
5903
+ SELECT '#BlitzIndexResults' AS table_name, * FROM #BlitzIndexResults;
5904
+ END;
5905
+
5906
RAISERROR(N'Returning results.', 0,1) WITH NOWAIT;
5907
5908
/*Return results.*/
0 commit comments