-
Couldn't load subscription status.
- Fork 13
Add metadataFormatIsEmpty in TarantoolTuple #372
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 from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -14,6 +14,13 @@ | |
| * @author Alexey Kuzin | ||
| */ | ||
| public interface TarantoolTuple extends Iterable<TarantoolField>, Packable { | ||
| /** | ||
| * Check whether this tuple includes information about space format | ||
| * | ||
| * @return true if we can obtain the tuple fields by names | ||
| */ | ||
| boolean hasMetadata(); | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If we are going to use different types ( There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We'll break compatibility anyway. So I don't see a big problem to have hasMetadata now and then remove it. I want to sync springdata and cartridge-java as soon as possible, because we've already been being late |
||
|
|
||
| /** | ||
| * Get a tuple field by its position | ||
| * | ||
|
|
||
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.
We need to change this entry too