Skip to content

Commit 385357e

Browse files
authored
Merge pull request #180 from LowlyDBA/development
Development
2 parents 7ce0bad + 4c06b8a commit 385357e

File tree

5 files changed

+24
-23
lines changed

5 files changed

+24
-23
lines changed

appveyor/appveyor.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ pull_requests:
44
do_not_increment_build_number: false
55
max_jobs: 2
66
build: off
7-
# skip_commits:
8-
# author: Appveyor
7+
matrix:
8+
fast_finish: true
99

1010
environment:
1111
access_token:
@@ -18,11 +18,6 @@ environment:
1818
COV_REPORT: appveyor\sqlcover\Coverage.opencoverxml
1919

2020
matrix:
21-
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
22-
MSSQL: SQL2019
23-
DB_INSTANCE: localhost\SQL2019
24-
LATEST: True
25-
2621
# Azure SQL Env
2722
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
2823
MSSQL: AZURESQL
@@ -58,6 +53,12 @@ environment:
5853
LATEST: False
5954
AzureSQL: False
6055

56+
# Latest version pushes any changes to branch
57+
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
58+
MSSQL: SQL2019
59+
DB_INSTANCE: localhost\SQL2019
60+
LATEST: True
61+
6162
clone_script:
6263
- git config --global credential.helper store
6364
- ps: Add-Content "$HOME\.git-credentials" "https://$($env:access_token):[email protected]`n" -NoNewLine

appveyor/sqlcover/Coverage.opencoverxml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -299,16 +299,16 @@
299299
<SequencePoint vc="10" uspid="279" ordinal="39" offset="11757" sl="324" sc="3" el="324" ec="36" />
300300
<SequencePoint vc="10" uspid="280" ordinal="40" offset="11808" sl="326" sc="5" el="328" ec="43" />
301301
<SequencePoint vc="10" uspid="281" ordinal="41" offset="12000" sl="331" sc="3" el="507" ec="6" />
302-
<SequencePoint vc="10" uspid="282" ordinal="42" offset="18457" sl="513" sc="1" el="716" ec="6" />
303-
<SequencePoint vc="10" uspid="283" ordinal="43" offset="26601" sl="722" sc="1" el="856" ec="6" />
304-
<SequencePoint vc="10" uspid="284" ordinal="44" offset="32310" sl="862" sc="1" el="984" ec="6" />
305-
<SequencePoint vc="10" uspid="285" ordinal="45" offset="37443" sl="990" sc="1" el="1109" ec="6" />
306-
<SequencePoint vc="10" uspid="286" ordinal="46" offset="42480" sl="1115" sc="1" el="1183" ec="6" />
307-
<SequencePoint vc="10" uspid="287" ordinal="47" offset="45417" sl="1189" sc="1" el="1319" ec="6" />
308-
<SequencePoint vc="10" uspid="288" ordinal="48" offset="51017" sl="1322" sc="1" el="1325" ec="52" />
309-
<SequencePoint vc="10" uspid="289" ordinal="49" offset="51282" sl="1328" sc="1" el="1331" ec="20" />
310-
<SequencePoint vc="10" uspid="290" ordinal="50" offset="51364" sl="1333" sc="1" el="1333" ec="196" />
311-
<SequencePoint vc="10" uspid="291" ordinal="51" offset="51563" sl="1334" sc="1" el="1343" ec="10" />
302+
<SequencePoint vc="10" uspid="282" ordinal="42" offset="18472" sl="513" sc="1" el="716" ec="6" />
303+
<SequencePoint vc="10" uspid="283" ordinal="43" offset="26616" sl="722" sc="1" el="856" ec="6" />
304+
<SequencePoint vc="10" uspid="284" ordinal="44" offset="32325" sl="862" sc="1" el="984" ec="6" />
305+
<SequencePoint vc="10" uspid="285" ordinal="45" offset="37458" sl="990" sc="1" el="1109" ec="6" />
306+
<SequencePoint vc="10" uspid="286" ordinal="46" offset="42495" sl="1115" sc="1" el="1183" ec="6" />
307+
<SequencePoint vc="10" uspid="287" ordinal="47" offset="45432" sl="1189" sc="1" el="1319" ec="6" />
308+
<SequencePoint vc="10" uspid="288" ordinal="48" offset="51032" sl="1322" sc="1" el="1325" ec="52" />
309+
<SequencePoint vc="10" uspid="289" ordinal="49" offset="51297" sl="1328" sc="1" el="1331" ec="20" />
310+
<SequencePoint vc="10" uspid="290" ordinal="50" offset="51379" sl="1333" sc="1" el="1333" ec="196" />
311+
<SequencePoint vc="10" uspid="291" ordinal="51" offset="51578" sl="1334" sc="1" el="1343" ec="10" />
312312
</SequencePoints>
313313
</Method>
314314
</Methods>

appveyor/sqlcover/[dbo].[sp_doc]

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ sp_doc - Always have current documentation by generating it on the fly in markdo
1616

1717
Part of the DBA MultiTool http://dba-multitool.org
1818

19-
Version: 20201216
19+
Version: 20201221
2020

2121
MIT License
2222

@@ -332,7 +332,7 @@ BEGIN
332332
WHERE [t].[object_id] = @objectid;' +
333333

334334
--Indexes
335-
+ N'IF EXISTS (SELECT 1 FROM [sys].[indexes] WHERE [object_id] = @objectid)
335+
+ N'IF EXISTS (SELECT 1 FROM [sys].[indexes] WHERE [object_id] = @objectid AND [type] > 0)
336336
BEGIN
337337
INSERT INTO #markdown
338338
SELECT CONCAT(CHAR(13), CHAR(10), ''#### '', ''Indexes'')

install_dba-multitool.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ sp_doc - Always have current documentation by generating it on the fly in markdo
7878
7979
Part of the DBA MultiTool http://dba-multitool.org
8080
81-
Version: 20201216
81+
Version: 20201221
8282
8383
MIT License
8484
@@ -394,7 +394,7 @@ BEGIN
394394
WHERE [t].[object_id] = @objectid;' +
395395

396396
--Indexes
397-
+ N'IF EXISTS (SELECT 1 FROM [sys].[indexes] WHERE [object_id] = @objectid)
397+
+ N'IF EXISTS (SELECT 1 FROM [sys].[indexes] WHERE [object_id] = @objectid AND [type] > 0)
398398
BEGIN
399399
INSERT INTO #markdown
400400
SELECT CONCAT(CHAR(13), CHAR(10), ''#### '', ''Indexes'')

sp_doc.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ sp_doc - Always have current documentation by generating it on the fly in markdo
7878
7979
Part of the DBA MultiTool http://dba-multitool.org
8080
81-
Version: 20201216
81+
Version: 20201221
8282
8383
MIT License
8484
@@ -394,7 +394,7 @@ BEGIN
394394
WHERE [t].[object_id] = @objectid;' +
395395

396396
--Indexes
397-
+ N'IF EXISTS (SELECT 1 FROM [sys].[indexes] WHERE [object_id] = @objectid)
397+
+ N'IF EXISTS (SELECT 1 FROM [sys].[indexes] WHERE [object_id] = @objectid AND [type] > 0)
398398
BEGIN
399399
INSERT INTO #markdown
400400
SELECT CONCAT(CHAR(13), CHAR(10), ''#### '', ''Indexes'')

0 commit comments

Comments
 (0)