We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c11ff73 commit 57439ffCopy full SHA for 57439ff
3 files changed
src/mikro-orm/halfvec.js
@@ -10,9 +10,6 @@ export class HalfvecType extends Type {
10
}
11
12
convertToJSValue(value, platform) {
13
- if (value === null) {
14
- return null;
15
- }
16
return halfvecFromSql(value);
17
18
src/mikro-orm/sparsevec.js
@@ -11,9 +11,6 @@ export class SparsevecType extends Type {
// @ts-ignore
return sparsevecFromSql(value);
19
src/mikro-orm/vector.js
@@ -10,9 +10,6 @@ export class VectorType extends Type {
return vectorFromSql(value);
0 commit comments