-
Notifications
You must be signed in to change notification settings - Fork 1k
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 ignored bitmap of attribute in writeTablet #13858
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #13858 +/- ##
============================================
- Coverage 39.84% 39.83% -0.02%
Complexity 71 71
============================================
Files 4149 4153 +4
Lines 262796 262868 +72
Branches 31998 32008 +10
============================================
- Hits 104720 104711 -9
- Misses 158076 158157 +81 ☔ View full report in Codecov by Sentry. |
@@ -82,7 +82,9 @@ public List<Object[]> getAttributeValueList() { | |||
Object[] attrValues = new Object[attrColumnIndices.size()]; | |||
for (int j = 0; j < attrColumnIndices.size(); j++) { | |||
final int columnIndex = attrColumnIndices.get(j); | |||
attrValues[j] = ((Object[]) insertTabletStatement.getColumns()[columnIndex])[i]; | |||
if (!insertTabletStatement.isNull(i, j)) { |
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.
isNull(i, columnIndex)?
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.
Fixed
Quality Gate passedIssues Measures |
No description provided.