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
fix:update schema compat check with backend type changes #522
Conversation
Codecov Report
@@ Coverage Diff @@
## master #522 +/- ##
============================================
- Coverage 78.68% 78.60% -0.08%
- Complexity 662 663 +1
============================================
Files 59 59
Lines 3790 3786 -4
Branches 255 253 -2
============================================
- Hits 2982 2976 -6
- Misses 692 693 +1
- Partials 116 117 +1
Continue to review full report at Codecov.
|
@@ -348,6 +343,9 @@ private void protoFieldTypeIsCompatibleWithBQFieldType( | |||
case "NUMERIC": | |||
match = isCompatibleWithBQNumeric(protoType); | |||
break; | |||
case "BIGNUMERIC": | |||
match = isCompatibleWithBQNumeric(protoType); |
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.
please add test for this
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.
Removed it for now, it seems the value is not available in external library yet.
Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly:
Fixes #<issue_number_goes_here>☕️