-
Notifications
You must be signed in to change notification settings - Fork 29
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
Support array fields #77
Labels
enhancement
New feature or request
Milestone
Comments
Thanks. Yeah, the SDK was originally developed against 2.2, and arrays were only introduced against 2.3 - we missed this. We'll take a look at implementing it. |
As well as iterators. Crucial thing for our needs. https://milvus.io/docs/with-iterators.md |
PR with an Array fields implementation #81 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Current client API does not allow you to specify field schema for
Array
types.I propose extending the C# API to include support for defining array field schemas, which would allow developers to specify the type of elements in the array along with constraints such as
capacity
andmaxLength
. Below are proposed methods to add to the API for defining array fields with both varchar and scalar types:The text was updated successfully, but these errors were encountered: