Skip to content

Commit

Permalink
Removing NA SQL comment
Browse files Browse the repository at this point in the history
  • Loading branch information
mikaelweave committed Nov 7, 2023
1 parent f5be1d5 commit 24412eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ DECLARE @SP varchar(100) = 'GetResourcesByTypeAndSurrogateIdRange'
,@Mode varchar(100) = 'RT='+isnull(convert(varchar,@ResourceTypeId),'NULL')
+' S='+isnull(convert(varchar,@StartId),'NULL')
+' E='+isnull(convert(varchar,@EndId),'NULL')
+' GE='+isnull(convert(varchar,@GlobalEndId),'NULL') -- Could this just be a boolean for if historical records should be returned? GlobalEndId should equal EndId in all cases I can think of.
+' GE='+isnull(convert(varchar,@GlobalEndId),'NULL')
+' HI='+isnull(convert(varchar,@IncludeHistory),'NULL')
+' DE'+isnull(convert(varchar,@IncludeDeleted),'NULL')
,@st datetime = getUTCdate()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ DECLARE @SP varchar(100) = 'GetResourcesByTypeAndSurrogateIdRange'
,@Mode varchar(100) = 'RT='+isnull(convert(varchar,@ResourceTypeId),'NULL')
+' S='+isnull(convert(varchar,@StartId),'NULL')
+' E='+isnull(convert(varchar,@EndId),'NULL')
+' GE='+isnull(convert(varchar,@GlobalEndId),'NULL') -- Could this just be a boolean for if historical records should be returned? GlobalEndId should equal EndId in all cases I can think of.
+' GE='+isnull(convert(varchar,@GlobalEndId),'NULL')
+' HI='+isnull(convert(varchar,@IncludeHistory),'NULL')
+' DE'+isnull(convert(varchar,@IncludeDeleted),'NULL')
,@st datetime = getUTCdate()
Expand Down

0 comments on commit 24412eb

Please sign in to comment.