We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20f0f58 commit 2727296Copy full SHA for 2727296
src/test/java/com/pgvector/JDBCJavaTest.java
@@ -54,6 +54,8 @@ private void example(boolean read_binary) throws SQLException {
54
}
55
assertEquals(Arrays.asList(new Long[]{1L, 3L, 2L, 4L}), ids);
56
assertArrayEquals(new float[] {1, 1, 1}, embeddings.get(0).toArray());
57
+ assertArrayEquals(new float[] {1, 1, 2}, embeddings.get(1).toArray());
58
+ assertArrayEquals(new float[] {2, 2, 2}, embeddings.get(2).toArray());
59
60
Statement indexStmt = conn.createStatement();
61
indexStmt.executeUpdate("CREATE INDEX ON jdbc_items USING ivfflat (embedding vector_l2_ops) WITH (lists = 100)");
0 commit comments