-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Update add data #7753
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
Update add data #7753
Conversation
Co-authored-by: Yuchen Shi <yuchenshi@google.com>
Co-authored-by: Yuchen Shi <yuchenshi@google.com>
Co-authored-by: Yuchen Shi <yuchenshi@google.com>
| case "UUID": | ||
| return { kind: Kind.STRING, value: "1111-2222-3333-44444" }; | ||
| case "Vector": | ||
| return { kind: Kind.LIST, values: [] }; |
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.
I forget where we landed w/ this during the bash... should this be omitted or an empty list?
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.
Not following, for vectors?
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.
I think the point here is that an empty vector is very likely to be invalid (due to the size directive), so it may be unhelpful to put it there. FWIW, i don't see a great way to handle required vectors here either.
No description provided.