Skip to content

Commit

Permalink
enhance: let level param accepts more types (#843)
Browse files Browse the repository at this point in the history
level param will have more types in the near future to provide more
semantics, let sdk side accepts a non-typed level param and param check
will be done in the server side.

Signed-off-by: chasingegg <[email protected]>
  • Loading branch information
chasingegg authored Nov 13, 2024
1 parent 1b1dd47 commit 0532968
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 33 deletions.
8 changes: 2 additions & 6 deletions entity/genidx/genidx.go
Original file line number Diff line number Diff line change
Expand Up @@ -621,8 +621,8 @@ func main() {
ConstructParams: []idxParam{},
SearchParams: []idxParam{
{
Name: "level",
ValidationRule: "[1, 9223372036854775807]",
Name: "level",
Type: "interface{}",
},
},
ValidExamples: []string{
Expand All @@ -632,10 +632,6 @@ func main() {
ValidSearchParams: []string{
"level = 1",
},
InvalidSearchParams: []string{
"level = 0",
"level = -1",
},
},
{
IdxName: "GPUIvfFlat",
Expand Down
11 changes: 3 additions & 8 deletions entity/indexes_search_param_gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 1 addition & 19 deletions entity/indexes_search_param_gen_test.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 0532968

Please sign in to comment.