-
Notifications
You must be signed in to change notification settings - Fork 303
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
Scanner supports multiple family/qualifiers #37
Conversation
wow, last commit actually should go as separate pull request. in case of empty values, exceptions looks like this
|
It would be nice if we could provide this functionality with a simpler implementation. I'm especially not fond of the private byte[][] families;
private byte[][][] qualifiers;
// ...
/**
* Specifies one more column qualifiers to scan within a given family.
* @param family ...
* @param qualifiers ...
* @since 1.4
*/
public void setQualifiers(final byte[] family, final byte[][] qualifiers) {
add family to this.families[i];
add qualifiers to this.qualifiers[i];
} Where I think if we merge this change in, then it would override the one in #36, because it would be more general. |
Ok. |
ColumnSpec class was removed. |
Some quick implementation of multiple family/qualifiers passed to scanner.
If you have some complains or designs thoughts, feel free to write them. I'll fix any weird pieces of code.
Thank you.