Skip to content

Commit 395fbee

Browse files
Doc tweaks.
1 parent a006aba commit 395fbee

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed

doc/src/release_notes.rst

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Thin Mode Changes
1818
+++++++++++++++++
1919

2020
#) Added support for :ref:`two-phase commits <tpc>`.
21-
#) Added support for data of type :data:`~oracledb.DB_TYPE_BFILE`.
21+
#) Added support for columns of type BFILE.
2222
#) When calling :meth:`ConnectionPool.acquire()` or
2323
:meth:`AsyncConnectionPool.acquire()`, the connection pool ``mode``
2424
:data:`oracledb.POOL_GETMODE_TIMEDWAIT` now always honors the
@@ -115,7 +115,8 @@ Thin Mode Changes
115115
Common Changes
116116
++++++++++++++
117117

118-
#) Added support for columns of type :ref:`VECTOR <vectors>`.
118+
#) Added support for Oracle Database 23ai columns of type :ref:`VECTOR
119+
<vectors>`.
119120
#) Added support for columns of type INTERVAL YEAR TO MONTH which can be
120121
represented in Python by instances of the new
121122
:ref:`oracledb.IntervalYM <interval_ym>` class
@@ -251,8 +252,8 @@ Common Changes
251252
#) Added class :ref:`oracledb.JsonId <jsonid>` to represent JSON ID values
252253
returned by SODA in Oracle Database 23.4 and later in the ``_id``
253254
attribute of documents stored in native collections.
254-
#) Added support for columns of type VECTOR (currently requires access to a
255-
limited availability release of the database).
255+
#) Added support for columns of type VECTOR usable with a limited
256+
availability release of Oracle Database 23.
256257
#) Errors raised when calling :meth:`Cursor.executemany()` with PL/SQL now
257258
have the :data:`oracledb._Error.offset` attribute populated with the last
258259
iteration that succeeded

doc/src/user_guide/vector_data_type.rst

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,13 @@
44
Using Vector Data
55
*****************
66

7-
Oracle Database 23ai introduced a new data type VECTOR for artificial
8-
intelligence and machine learning search operations. The vector data type
9-
is a homogeneous array of 8-bit signed integers, 32-bit floating-point
10-
numbers, or 64-bit floating-point numbers. With the vector data type, you
11-
can define the number of dimensions for the data and the storage format
12-
for each dimension value in the vector.
7+
Oracle Database 23ai introduced a new data type `VECTOR
8+
<https://docs.oracle.com/en/database/oracle/oracle-database/23/vecse/overview-ai-vector-search.html>`__
9+
for artificial intelligence and machine learning search operations. The VECTOR
10+
data type is a homogeneous array of 8-bit signed integers, 32-bit
11+
floating-point numbers, or 64-bit floating-point numbers. With the VECTOR data
12+
type, you can define the number of dimensions for the data and the storage
13+
format for each dimension value in the vector.
1314

1415
To create a table with three columns for vector data, for example:
1516

0 commit comments

Comments
 (0)