"Oracle" is a proper noun

This commit is contained in:
Gavin King 2024-11-16 21:20:06 +01:00
parent 632485f8b1
commit 223855a104

View File

@ -681,8 +681,9 @@ public class SqlTypes {
/** /**
* A type code representing an {@code embedding vector} type for databases like * A type code representing an {@code embedding vector} type for databases
* {@link org.hibernate.dialect.PostgreSQLDialect PostgreSQL} and {@link org.hibernate.dialect.OracleDialect Oracle 23ai}. * 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. * An embedding vector essentially is a {@code float[]} with a fixed size.
* *
* @since 6.4 * @since 6.4
@ -690,17 +691,17 @@ public class SqlTypes {
public static final int VECTOR = 10_000; 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; 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; 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; public static final int VECTOR_FLOAT64 = 10_003;