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.
1 parent 70c0acf commit d87c661Copy full SHA for d87c661
sp_BlitzCache.sql
@@ -5252,9 +5252,8 @@ Thank you.'
5252
5253
IF @Debug = 2
5254
BEGIN
5255
- SELECT @AIPayload AS AIPayload;
5256
- RAISERROR('AI Payload (first 4000 chars):', 0, 1) WITH NOWAIT;
5257
- PRINT LEFT(@AIPayload, 4000);
+ SELECT @CurrentQueryClipped AS CurrentQueryClipped, @AIPayload AS AIPayload,
+ LEN(@AIPayload) AS AIPayload_Length, DATALENGTH(@AIPayload) AS AIPayload_DataLength;
5258
END;
5259
5260
RAISERROR('Calling AI endpoint for query plan analysis on query: ', 0, 1) WITH NOWAIT;
0 commit comments