-
Notifications
You must be signed in to change notification settings - Fork 16
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 #521: allow hyphen in names, prevent empty String #522
Conversation
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.
LGTM 👍
@maheshrajamani Could you also review this when you get a chance? |
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.
@tatu-at-datastax Can you add insert and find (filter) IT for this case?
Yes that sounds reasonable. |
@@ -67,22 +67,47 @@ public void insertDocument() { | |||
.body("status.insertedIds[0]", is("doc3")) | |||
.body("data", is(nullValue())) | |||
.body("errors", is(nullValue())); | |||
given() |
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.
Existing not change, just inlined JSON payloads for bit more compact code.
@maheshrajamani Added insert and find test cases, will merge once CI passes. |
What this PR does:
Improves property name validation wrt #521 so that:
-
) in names and name segmentsWhich issue(s) this PR fixes:
Fixes #521
Checklist