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 4392020 commit e1e79a3Copy full SHA for e1e79a3
pgvector-module/src/main/kotlin/griffio/PgVectorModule.kt
@@ -51,10 +51,10 @@ private class PgVectorTypeResolver(private val parentResolver: TypeResolver) : P
51
52
override fun definitionType(typeName: SqlTypeName): IntermediateType = with(typeName) {
53
check(this is PgVectorTypeName)
54
- val type = (when {
+ val type = when {
55
vectorDataType != null -> IntermediateType(PgVectorSqlType.VECTOR)
56
else -> super.definitionType(typeName)
57
- })
+ }
58
return type
59
}
60
0 commit comments