"Oracle" is a proper noun

This commit is contained in:
Gavin King 2024-11-16 21:20:06 +01:00
parent 632485f8b1
commit 223855a104
1 changed files with 6 additions and 5 deletions

View File

@ -681,8 +681,9 @@ public class SqlTypes {
/**
* A type code representing an {@code embedding vector} type for databases like
* {@link org.hibernate.dialect.PostgreSQLDialect PostgreSQL} and {@link org.hibernate.dialect.OracleDialect Oracle 23ai}.
* A type code representing an {@code embedding vector} type for databases
* like {@link org.hibernate.dialect.PostgreSQLDialect PostgreSQL} and
* {@link org.hibernate.dialect.OracleDialect Oracle 23ai}.
* An embedding vector essentially is a {@code float[]} with a fixed size.
*
* @since 6.4
@ -690,17 +691,17 @@ public class SqlTypes {
public static final int VECTOR = 10_000;
/**
* A type code representing a single-byte integer vector type for oracle 23ai database.
* A type code representing a single-byte integer vector type for Oracle 23ai database.
*/
public static final int VECTOR_INT8 = 10_001;
/**
* A type code representing a single-precision floating-point vector type for oracle 23ai database.
* A type code representing a single-precision floating-point vector type for Oracle 23ai database.
*/
public static final int VECTOR_FLOAT32 = 10_002;
/**
* A type code representing a double-precision floating-point type for oracle 23ai database.
* A type code representing a double-precision floating-point type for Oracle 23ai database.
*/
public static final int VECTOR_FLOAT64 = 10_003;