-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#4270 - Update the Data Types to adapt to import #4329
Conversation
@@ -53,6 +53,11 @@ export class SFASIntegrationProcessingService { | |||
for (const filePath of filePaths) { | |||
await this.processFile(filePath, processSummary); | |||
} | |||
if (!filePaths.length) { | |||
processSummary.info( | |||
"There are no files to be processed. But post file import operations will be executed.", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Minor, I would change as below.
There are no files to be processed, but post-file import operations will be executed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice work and nice catches, looks good 👍
Quality Gate passedIssues Measures |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great work @dheepak-aot 👍
As per the testing done from SFAS file, data type of the following DB columns have been updated.
sims.sfas_individuals
- columnphone_number
changed to BIGINT.sims.sfas_applications
- columnapplication_number
changed to BIGINT.sims.sfas_applications
- columngross_income_previous_year
changed to NUMERIC(10,2).Note: Type casting wasn't used in the data type conversion expecting no data in the columns.
Rollback Evidence