Skip to content
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

Allow string value for select for enhanced query request #5869

Open
wants to merge 5 commits into
base: master
Choose a base branch
from

Conversation

ghetelgb
Copy link

@ghetelgb ghetelgb commented Feb 7, 2025

…enum

Expected behaviour: allow adding a String instead of Select enum value in the projection expression and validate the options against the low level DynamoDB enum.

Motivation and Context

#5547

Modifications

Testing

Screenshots (if appropriate)

Types of changes

  • Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)

Checklist

  • I have read the CONTRIBUTING document
  • Local run of mvn install succeeds
  • My code follows the code style of this project
  • My change requires a change to the Javadoc documentation
  • I have updated the Javadoc documentation accordingly
  • I have added tests to cover my changes
  • All new and existing tests passed
  • I have added a changelog entry. Adding a new entry must be accomplished by running the scripts/new-change script and following the instructions. Commit the new file created by the script in .changes/next-release with your changes.
  • My change is to implement 1.11 parity feature and I have updated LaunchChangelog

License

  • I confirm that this pull request can be released under the Apache 2 license

@ghetelgb ghetelgb requested a review from a team as a code owner February 7, 2025 16:08
Comment on lines 314 to 319
/**
* Determines the attributes to be returned in the result. See {@link Select} for examples and constraints.
* If not found, returns {@link Select#UNKNOWN_TO_SDK_VERSION}.
* @param select the selection criteria as a string
* @return a builder of this type
*/
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: this API doc seems to be copied from a getter, not setter? Can we update it

* @return a builder of this type
*/
public Builder select(String select) {
this.select = Select.fromValue(select);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we need to change the select variable to string and pass it to the low level client to make it actually work. If customers pass an unsupported string, it'd be initialized as UNKNOWN_TO_SDK_VERSION

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Changed the implementation accordingly, please re-check - thanks!

}

@Test
public void query_withInvalidStringSelect_returnsUnknown() {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does this need to be an integration tests? Can we add functional tests (tests against dynamodb local) instead? BasicQueryTest?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have added also tests against dynamodb local in the new update commit - let me know if the current understanding is correct.

@@ -122,7 +122,7 @@ public Boolean scanIndexForward() {
* Returns the value of select, or null if it doesn't exist.
* @return
*/
public Select select() {
public String select() {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This would be a breaking change, can we expose a new method selectAsString() instead? This is how it's done in low level QueryRequest as well https://sdk.amazonaws.com/java/api/latest/software/amazon/awssdk/services/dynamodb/model/QueryRequest.html#selectAsString()

@@ -307,6 +307,17 @@ public Builder scanIndexForward(Boolean scanIndexForward) {
* @return a builder of this type
*/
public Builder select(Select select) {
this.select = select.toString();
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we add null check?

this.select = select == null ? null : select.toString();

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants