We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9182ad6 commit d71597aCopy full SHA for d71597a
1 file changed
src/utils/index.js
@@ -10,7 +10,7 @@ function vectorFromSql(value) {
10
11
function vectorToSql(value) {
12
if (Array.isArray(value)) {
13
- return JSON.stringify(value);
+ return JSON.stringify(value.map((v) => Number(v)));
14
}
15
return value;
16
0 commit comments