File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ Version 8.2 (TBD)
2222#) The distributed transaction handle assosciated with the connection is now
2323 cleared on commit or rollback (`issue 530
2424 <https://github.com/oracle/python-cx_Oracle/issues/530> `__).
25+ #) Stop passing unsupported flags to dpiSodaDocCursor_getNext().
2526#) Added check to ensure that when setting variables or object attributes, the
2627 type of the temporary LOB must match the expected type.
2728#) In order to follow the PEP 8 naming style a number of parameter names,
Original file line number Diff line number Diff line change @@ -97,13 +97,11 @@ static PyObject *cxoSodaDocCursor_getNext(cxoSodaDocCursor *cursor)
9797{
9898 dpiSodaDoc * handle ;
9999 cxoSodaDoc * doc ;
100- uint32_t flags ;
101100 int status ;
102101
103- if (cxoConnection_getSodaFlags (cursor -> db -> connection , & flags ) < 0 )
104- return NULL ;
105102 Py_BEGIN_ALLOW_THREADS
106- status = dpiSodaDocCursor_getNext (cursor -> handle , flags , & handle );
103+ status = dpiSodaDocCursor_getNext (cursor -> handle , DPI_SODA_FLAGS_DEFAULT ,
104+ & handle );
107105 Py_END_ALLOW_THREADS
108106 if (status < 0 )
109107 return cxoError_raiseAndReturnNull ();
You can’t perform that action at this time.
0 commit comments