-
Notifications
You must be signed in to change notification settings - Fork 93
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
Changes to fix issues of missing extensions and others #1050
Changes to fix issues of missing extensions and others #1050
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #1050 +/- ##
============================================
- Coverage 50.60% 50.60% -0.01%
- Complexity 673 674 +1
============================================
Files 91 91
Lines 5505 5511 +6
Branches 707 707
============================================
+ Hits 2786 2789 +3
- Misses 2457 2461 +4
+ Partials 262 261 -1 ☔ View full report in Codecov by Sentry. |
4ac7275
to
968d415
Compare
968d415
to
88f34e9
Compare
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.
Thanks @chandrashekar-s for fixing these issues. All of my comments are either minor or questions, so please feel free to merge this after you address them and the e2e issue is fixed.
bunsen/bunsen-avro/src/main/java/com/cerner/bunsen/avro/converters/DefinitionToAvroVisitor.java
Show resolved
Hide resolved
bunsen/bunsen-core/src/main/java/com/cerner/bunsen/definitions/StructureDefinitions.java
Outdated
Show resolved
Hide resolved
...en/bunsen-core-r4/src/main/java/com/cerner/bunsen/definitions/r4/R4StructureDefinitions.java
Outdated
Show resolved
Hide resolved
pipelines/common/src/test/resources/questionnaire_response.json
Outdated
Show resolved
Hide resolved
bunsen/bunsen-avro/src/test/resources/r4-custom-schemas/bunsen-test-patient-schema.json
Show resolved
Hide resolved
8b73086
to
63ea025
Compare
63ea025
to
4a7bf43
Compare
Hi @bashir2, thanks for the review. I have updated my comments and I have also created these 2 issues (Relook at the recursive depth and Fix the number of parquet files for DirectRunner) which can be resolved in different PRs. |
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.
Thanks @chandrashekar-s for the detailed responses. My only main remaining issue is the null
return value. Otherwise, please feel free to merge this.
...en/bunsen-core-r4/src/main/java/com/cerner/bunsen/definitions/r4/R4StructureDefinitions.java
Outdated
Show resolved
Hide resolved
bunsen/bunsen-core/src/main/java/com/cerner/bunsen/definitions/StructureDefinitions.java
Outdated
Show resolved
Hide resolved
bunsen/bunsen-avro/src/test/resources/r4-custom-schemas/bunsen-test-patient-schema.json
Show resolved
Hide resolved
e051c5f
to
0c0f1bd
Compare
7546a53
to
bebc984
Compare
Thanks @bashir2 for the review, I have addressed the review comments and will be merging the PR. Please let me know if you see any discrepancies and I will take them up in a separate PR. |
Description of what I changed
Fixes #1027
The below mentioned changes have been made as part of this PR
Decimal
data types.Reference
types have been changed to contain a full path name from root, so that it is unique for each path.E2E test
QuestionnaireResponse
fhir resource and ran aFull Run
and checked if theQuestionnaireResponse
is converted toAvro
record properlyTESTED:
Checklist: I completed these to help reviewers :)
I have read and will follow the review process.
I am familiar with Google Style Guides for the language I have coded in.
No? Please take some time and review Java and Python style guides.
My IDE is configured to follow the Google code styles.
No? Unsure? -> configure your IDE.
I have added tests to cover my changes. (If you refactored existing code that was well tested you do not have to add tests)
I ran
mvn clean package
right before creating this pull request and added all formatting changes to my commit.All new and existing tests passed.
My pull request is based on the latest changes of the master branch.
No? Unsure? -> execute command
git pull --rebase upstream master