-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue 424: Add support for handling of vector fields. (#489)
* Issue 424: Add support for handling of vector fields. Signed-off-by: Dmitry Goldenberg <dgoldenberg@integralads.com> Signed-off-by: Dmitry Goldenberg <dgoldenberg@integralads.com> * Issue 424: Add support for handling of vector fields. Added a line to the CHANGELOG file. Signed-off-by: Dmitry Goldenberg <dgoldenberg@integralads.com> Signed-off-by: Dmitry Goldenberg <dgoldenberg@integralads.com> * Issue 424: Add support for handling of vector fields. Added the PR number to the CHANGELOG file. Signed-off-by: Dmitry Goldenberg <dgoldenberg@integralads.com> * Issue 424: Add support for handling of vector fields. Added the missing enum variant for KNN_VECTOR to the FieldType enum. Signed-off-by: Dmitry Goldenberg <dgoldenberg@integralads.com> * Issue 424: Add support for handling of vector fields. Signed-off-by: Dmitry Goldenberg <dgoldenberg@integralads.com> Signed-off-by: Dmitry Goldenberg <dgoldenberg@integralads.com> * Issue 424: Add support for handling of vector fields. Added two unit tests. Signed-off-by: Dmitry Goldenberg <dgoldenberg@integralads.com> * Issue 424: Add support for handling of vector fields. Added a couple of comments. Signed-off-by: Dmitry Goldenberg <dgoldenberg@integralads.com> * Issue 424: Add support for handling of vector fields. Added Ignore for testKnnVectorAsArrayOfFloats for now as the k-NN plugin is currently missing and needs to be added. Signed-off-by: Dmitry Goldenberg <dgoldenberg@integralads.com> --------- Signed-off-by: Dmitry Goldenberg <dgoldenberg@integralads.com>
- Loading branch information
1 parent
766ae02
commit 0621ef2
Showing
13 changed files
with
117 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,4 +20,5 @@ metastore_db | |
out/ | ||
localRepo/ | ||
.vscode/ | ||
*.jar | ||
*.jar | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,6 +51,9 @@ | |
}, | ||
"field16" : { | ||
"type" : "wildcard" | ||
}, | ||
"field17" : { | ||
"type" : "knn_vector" | ||
} | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,6 +50,9 @@ | |
}, | ||
"field16" : { | ||
"type" : "wildcard" | ||
}, | ||
"field17" : { | ||
"type" : "knn_vector" | ||
} | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters