From 1b1eeb65b2b16168a6ecab39861629e771133ec5 Mon Sep 17 00:00:00 2001 From: Brandon Biggs Date: Mon, 2 Oct 2023 07:50:12 -0600 Subject: [PATCH] Update FieldSchema().md to include the `max_length` property. --- API_Reference/pymilvus/v2.3.x/Schema/FieldSchema().md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/API_Reference/pymilvus/v2.3.x/Schema/FieldSchema().md b/API_Reference/pymilvus/v2.3.x/Schema/FieldSchema().md index e19826025..03ed257bf 100644 --- a/API_Reference/pymilvus/v2.3.x/Schema/FieldSchema().md +++ b/API_Reference/pymilvus/v2.3.x/Schema/FieldSchema().md @@ -22,6 +22,8 @@ A FieldSchema object. | `is_partition_key` | Boolean value that indicates if the field is a partition-key field. | | `description` | Description of the field to create | | `default_value` | Default value of the field. This parameter supports only for scalar fields except array and JSON formats. You cannot specify a default value for a primary key field. | +| `max_length` | Must be specified to limit the max length of VARCHAR. The value should be in (0, 65535]| + ## Example