Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Apologies for creating a PR without an issue. This PR allows the users to specify person IDs that are bigger than a 32-bit integer. Even though the CDM specifies the person_id field is an INT, many databases use a BIGINT to preserve the original patient identifiers.
Because R does not support integers larger than 32-bit, this new code allows the user to provide
personIds
in any data type that can be converted to character (checked to consists only of numbers). On the database side, these are converted to BIGINT.(Note that I also updated the HADES GitHub Action to avoid errors due to out-of-date actions)