Skip to content

Commit 3814cf9

Browse files
committed
Pre-FRK release extravaganza
Update version numbers, etc.
1 parent a509d80 commit 3814cf9

16 files changed

+956
-331
lines changed

Documentation/Development/Merge Blitz.ps1

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,18 @@ $FilePath = "C:\Users\edarl\OneDrive\Documents\GitHub\SQL-Server-First-Responder
44

55
#All Core Blitz Without sp_BlitzQueryStore
66
Get-ChildItem -Path "$FilePath" -Filter "sp_Blitz*.sql" |
7-
Where-Object { $_.FullName -notlike "*sp_BlitzQueryStore.sql*"} |
7+
Where-Object { $_.FullName -notlike "*sp_BlitzQueryStore.sql*" -and $_.FullName -notlike "*sp_BlitzInMemoryOLTP*"} |
88
ForEach-Object { Get-Content $_.FullName } |
99
Set-Content -Path "$FilePath\Install-Core-Blitz-No-Query-Store.sql" -Force
1010

1111
#All Core Blitz With sp_BlitzQueryStore
1212
Get-ChildItem -Path "$FilePath" -Filter "sp_Blitz*.sql" |
13+
Where-Object { $_.FullName -notlike "*sp_BlitzInMemoryOLTP*"} |
1314
ForEach-Object { Get-Content $_.FullName } |
1415
Set-Content -Path "$FilePath\Install-Core-Blitz-With-Query-Store.sql" -Force
1516

1617
#All Scripts
1718
Get-ChildItem -Path "$FilePath" -Filter "sp_*.sql" |
19+
Where-Object { $_.FullName -notlike "*sp_BlitzInMemoryOLTP*"} |
1820
ForEach-Object { Get-Content $_.FullName } |
1921
Set-Content -Path "$FilePath\Install-All-Scripts.sql" -Force

0 commit comments

Comments
 (0)