Remove tabs in favor of spaces in order to be consistent with all of the other

files.
This commit is contained in:
Anthony Tuininga 2013-10-19 22:10:23 -06:00
parent b473a7ebbc
commit 27361c5a23
6 changed files with 24 additions and 24 deletions

View File

@ -89,8 +89,8 @@ the distutils module. Note that on Windows, I have used mingw32
modification. The commands required to build and install the module are as
follows:
python setup.py build
python setup.py install
python setup.py build
python setup.py install
Testing (Post Installation Quick Test)

View File

@ -36,8 +36,8 @@ the distutils module. Note that on Windows, I have used mingw32
modification. The commands required to build and install the module are as
follows:
python setup.py build
python setup.py install
python setup.py build
python setup.py install
See BUILD.txt for additional information.

View File

@ -563,8 +563,8 @@ static int Message_Initialize(
#if ORACLE_VERSION_HEX >= ORACLE_VERSION(11, 1)
dvoid **queryDescriptor;
udt_MessageQuery *query;
OCIColl *queries;
sb4 numQueries;
OCIColl *queries;
sb4 numQueries;
#endif
sword status;

View File

@ -556,21 +556,21 @@ static PyObject *Module_Initialize(void)
ADD_OCI_CONSTANT(SUBSCR_PROTO_MAIL)
ADD_OCI_CONSTANT(SUBSCR_PROTO_SERVER)
ADD_OCI_CONSTANT(SUBSCR_PROTO_HTTP)
ADD_OCI_CONSTANT(SUBSCR_QOS_RELIABLE)
ADD_OCI_CONSTANT(SUBSCR_QOS_PAYLOAD)
ADD_OCI_CONSTANT(SUBSCR_QOS_REPLICATE)
ADD_OCI_CONSTANT(SUBSCR_QOS_SECURE)
ADD_OCI_CONSTANT(SUBSCR_QOS_PURGE_ON_NTFN)
ADD_OCI_CONSTANT(SUBSCR_QOS_MULTICBK)
ADD_OCI_CONSTANT(SUBSCR_QOS_RELIABLE)
ADD_OCI_CONSTANT(SUBSCR_QOS_PAYLOAD)
ADD_OCI_CONSTANT(SUBSCR_QOS_REPLICATE)
ADD_OCI_CONSTANT(SUBSCR_QOS_SECURE)
ADD_OCI_CONSTANT(SUBSCR_QOS_PURGE_ON_NTFN)
ADD_OCI_CONSTANT(SUBSCR_QOS_MULTICBK)
#endif
#if ORACLE_VERSION_HEX >= ORACLE_VERSION(11, 1)
ADD_OCI_CONSTANT(ATTR_PURITY_DEFAULT)
ADD_OCI_CONSTANT(ATTR_PURITY_NEW)
ADD_OCI_CONSTANT(ATTR_PURITY_SELF)
ADD_OCI_CONSTANT(EVENT_QUERYCHANGE)
ADD_OCI_CONSTANT(SUBSCR_CQ_QOS_QUERY)
ADD_OCI_CONSTANT(SUBSCR_CQ_QOS_BEST_EFFORT)
ADD_OCI_CONSTANT(SUBSCR_CQ_QOS_CLQRYCACHE)
ADD_OCI_CONSTANT(EVENT_QUERYCHANGE)
ADD_OCI_CONSTANT(SUBSCR_CQ_QOS_QUERY)
ADD_OCI_CONSTANT(SUBSCR_CQ_QOS_BEST_EFFORT)
ADD_OCI_CONSTANT(SUBSCR_CQ_QOS_CLQRYCACHE)
#endif
#if ORACLE_VERSION_HEX >= ORACLE_VERSION(11, 2)
ADD_OCI_CONSTANT(SUBSCR_QOS_HAREG)

View File

@ -448,13 +448,13 @@ Database Change Notification
.. data:: SUBSCR_QOS_HAREG
This constant is a future possible value for the qos argument when
creating a subscription.
.. data:: SUBSCR_QOS_MULTICBK
This constant is a future possible value for the qos argument when
creating a subscription.

View File

@ -117,13 +117,13 @@ create table cx_Oracle.TestObjects (
);
create table cx_Oracle.TestTimestamps (
IntCol number(9) not null,
IntCol number(9) not null,
TimestampCol timestamp not null,
NullableCol timestamp
) tablespace users;
create table cx_Oracle.TestIntervals (
IntCol number(9) not null,
IntCol number(9) not null,
IntervalCol interval day to second not null,
NullableCol interval day to second
) tablespace users;
@ -146,7 +146,7 @@ end;
declare
t_RawValue raw(30);
t_RawValue raw(30);
function ConvertHexDigit(a_Value number) return varchar2 is
begin
@ -157,8 +157,8 @@ declare
end;
function ConvertToHex(a_Value varchar2) return varchar2 is
t_HexValue varchar2(60);
t_Digit number;
t_HexValue varchar2(60);
t_Digit number;
begin
for i in 1..length(a_Value) loop
t_Digit := ascii(substr(a_Value, i, 1));