Skip to content

Commit bdc40bf

Browse files
committed
mark ndarray column type as unsupported
1 parent e5705e1 commit bdc40bf

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/jvmMain/kotlin/com/martmists/ndarray/simd/compat/exposed_doublearray.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,10 +72,11 @@ internal class F64ArrayColumnType : ColumnType<F64Array>() {
7272
}
7373

7474
/**
75-
* A column type for storing vectors in PostgreSQL.
75+
* A column type for storing vectors in Exposed.
7676
*
7777
* @param name The name of the column.
7878
* @param size The size of the vector.
7979
* @since 1.4.3
8080
*/
81+
@Deprecated("Currently not working as expected!")
8182
fun Table.ndarray(name: String): Column<F64Array> = registerColumn(name, F64ArrayColumnType())

0 commit comments

Comments
 (0)