Skip to content

Commit abd0bb9

Browse files
author
Appveyor
committed
CI produced files
1 parent 816baee commit abd0bb9

File tree

4 files changed

+21
-137
lines changed

4 files changed

+21
-137
lines changed

appveyor/sqlcover/Coverage.opencoverxml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@
2727
<SequencePoint vc="5" uspid="16" ordinal="16" offset="2877" sl="92" sc="1" el="108" ec="29" />
2828
<SequencePoint vc="5" uspid="17" ordinal="17" offset="3521" sl="114" sc="1" el="324" ec="6" />
2929
<SequencePoint vc="5" uspid="18" ordinal="18" offset="11990" sl="330" sc="1" el="451" ec="6" />
30-
<SequencePoint vc="5" uspid="19" ordinal="19" offset="16922" sl="457" sc="1" el="590" ec="6" />
31-
<SequencePoint vc="5" uspid="20" ordinal="20" offset="22579" sl="596" sc="1" el="719" ec="6" />
32-
<SequencePoint vc="5" uspid="21" ordinal="21" offset="27694" sl="725" sc="1" el="844" ec="6" />
33-
<SequencePoint vc="5" uspid="22" ordinal="22" offset="32744" sl="850" sc="1" el="924" ec="52" />
34-
<SequencePoint vc="5" uspid="23" ordinal="23" offset="35779" sl="927" sc="1" el="930" ec="20" />
35-
<SequencePoint vc="5" uspid="24" ordinal="24" offset="35861" sl="932" sc="1" el="932" ec="106" />
36-
<SequencePoint vc="5" uspid="25" ordinal="25" offset="35970" sl="933" sc="1" el="937" ec="25" />
30+
<SequencePoint vc="5" uspid="19" ordinal="19" offset="16922" sl="457" sc="1" el="591" ec="6" />
31+
<SequencePoint vc="5" uspid="20" ordinal="20" offset="22623" sl="597" sc="1" el="720" ec="6" />
32+
<SequencePoint vc="5" uspid="21" ordinal="21" offset="27738" sl="726" sc="1" el="845" ec="6" />
33+
<SequencePoint vc="5" uspid="22" ordinal="22" offset="32788" sl="851" sc="1" el="925" ec="52" />
34+
<SequencePoint vc="5" uspid="23" ordinal="23" offset="35823" sl="928" sc="1" el="931" ec="20" />
35+
<SequencePoint vc="5" uspid="24" ordinal="24" offset="35905" sl="933" sc="1" el="933" ec="106" />
36+
<SequencePoint vc="5" uspid="25" ordinal="25" offset="36014" sl="934" sc="1" el="938" ec="25" />
3737
</SequencePoints>
3838
</Method>
3939
</Methods>

appveyor/sqlcover/[dbo].[sp_doc]

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -555,14 +555,15 @@ BEGIN
555555
,(CONCAT(CHAR(13), CHAR(10), ''<details><summary>Click to expand</summary>''));' +
556556

557557
--Object definition
558-
+ N'IF (@LimitStoredProcLength = 1)
558+
+ N'
559+
IF (@LimitStoredProcLength = 1 AND LEN(OBJECT_DEFINITION(@objectid)) > 8000)
559560
BEGIN;
560561
INSERT INTO #markdown (value)
561562
VALUES (CONCAT(CHAR(13), CHAR(10), ''```sql'',
562563
CHAR(13), CHAR(10), CAST(OBJECT_DEFINITION(@objectid) AS VARCHAR(8000))))
563-
,(''/**************************************************************************************************/'')
564-
,(''/* sp_doc: Contents truncated at 8000 characters. Set @LimitStoredProcLength = 0 to remove limit. */'')
565-
,(''/**************************************************************************************************/'')
564+
,(''/************************************************************************************************/'')
565+
,(''/* sp_doc: Max 8000 characters reached. Set @LimitStoredProcLength = 0 to show full definition. */'')
566+
,(''/************************************************************************************************/'')
566567
,(''```'');
567568
END;
568569
ELSE

0 commit comments

Comments
 (0)