Skip to content

Commit 7d020b4

Browse files
committed
Revert "fix(qdrant): support Long type in payload by converting to String"
This reverts commit f8b29f6. Signed-off-by: Solomon Hsu <[email protected]>
1 parent 44ae584 commit 7d020b4

File tree

1 file changed

+0
-3
lines changed
  • vector-stores/spring-ai-qdrant-store/src/main/java/org/springframework/ai/vectorstore/qdrant

1 file changed

+0
-3
lines changed

vector-stores/spring-ai-qdrant-store/src/main/java/org/springframework/ai/vectorstore/qdrant/QdrantValueFactory.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,6 @@ private static Value value(Object value) {
7575
return ValueFactory.value((String) value);
7676
case "Integer":
7777
return ValueFactory.value((Integer) value);
78-
case "Long":
79-
// use String representation
80-
return ValueFactory.value(String.valueOf(value));
8178
case "Double":
8279
return ValueFactory.value((Double) value);
8380
case "Float":

0 commit comments

Comments
 (0)