Tidy up documentation and remove unnecessary "tablespace users" clauses since
the default tablespace is defined anyway!
This commit is contained in:
parent
ab42359f26
commit
c238f63b58
@ -1,7 +1,8 @@
|
|||||||
/*-----------------------------------------------------------------------------
|
/*-----------------------------------------------------------------------------
|
||||||
* SetupTest.sql
|
* SetupTest.sql
|
||||||
* Creates a user named "cx_Oracle" and populates its schema with the tables
|
* Creates a user named "cx_Oracle" and populates its schema with the tables
|
||||||
* and packages necessary for performing the test suite.
|
* and packages necessary for performing the test suite. It also creates a user
|
||||||
|
* named "CX_ORACLE_PROXY" for testing proxying.
|
||||||
*---------------------------------------------------------------------------*/
|
*---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
whenever sqlerror exit failure
|
whenever sqlerror exit failure
|
||||||
@ -68,7 +69,7 @@ create table cx_Oracle.TestNumbers (
|
|||||||
FloatCol float not null,
|
FloatCol float not null,
|
||||||
UnconstrainedCol number not null,
|
UnconstrainedCol number not null,
|
||||||
NullableCol number(38)
|
NullableCol number(38)
|
||||||
) tablespace users;
|
);
|
||||||
|
|
||||||
create table cx_Oracle.TestStrings (
|
create table cx_Oracle.TestStrings (
|
||||||
IntCol number(9) not null,
|
IntCol number(9) not null,
|
||||||
@ -76,60 +77,58 @@ create table cx_Oracle.TestStrings (
|
|||||||
RawCol raw(30) not null,
|
RawCol raw(30) not null,
|
||||||
FixedCharCol char(40) not null,
|
FixedCharCol char(40) not null,
|
||||||
NullableCol varchar2(50)
|
NullableCol varchar2(50)
|
||||||
) tablespace users;
|
);
|
||||||
|
|
||||||
create table cx_Oracle.TestUnicodes (
|
create table cx_Oracle.TestUnicodes (
|
||||||
IntCol number(9) not null,
|
IntCol number(9) not null,
|
||||||
UnicodeCol nvarchar2(20) not null,
|
UnicodeCol nvarchar2(20) not null,
|
||||||
FixedUnicodeCol nchar(40) not null,
|
FixedUnicodeCol nchar(40) not null,
|
||||||
NullableCol nvarchar2(50)
|
NullableCol nvarchar2(50)
|
||||||
) tablespace users;
|
);
|
||||||
|
|
||||||
create table cx_Oracle.TestDates (
|
create table cx_Oracle.TestDates (
|
||||||
IntCol number(9) not null,
|
IntCol number(9) not null,
|
||||||
DateCol date not null,
|
DateCol date not null,
|
||||||
NullableCol date
|
NullableCol date
|
||||||
) tablespace users;
|
);
|
||||||
|
|
||||||
create table cx_Oracle.TestCLOBs (
|
create table cx_Oracle.TestCLOBs (
|
||||||
IntCol number(9) not null,
|
IntCol number(9) not null,
|
||||||
CLOBCol clob not null
|
CLOBCol clob not null
|
||||||
) tablespace users;
|
);
|
||||||
|
|
||||||
create table cx_Oracle.TestNCLOBs (
|
create table cx_Oracle.TestNCLOBs (
|
||||||
IntCol number(9) not null,
|
IntCol number(9) not null,
|
||||||
NCLOBCol nclob not null
|
NCLOBCol nclob not null
|
||||||
) tablespace users;
|
);
|
||||||
|
|
||||||
create table cx_Oracle.TestBLOBs (
|
create table cx_Oracle.TestBLOBs (
|
||||||
IntCol number(9) not null,
|
IntCol number(9) not null,
|
||||||
BLOBCol blob not null
|
BLOBCol blob not null
|
||||||
) tablespace users;
|
);
|
||||||
|
|
||||||
create table cx_Oracle.TestLongs (
|
create table cx_Oracle.TestLongs (
|
||||||
IntCol number(9) not null,
|
IntCol number(9) not null,
|
||||||
LongCol long not null
|
LongCol long not null
|
||||||
) tablespace users;
|
);
|
||||||
|
|
||||||
create table cx_Oracle.TestLongRaws (
|
create table cx_Oracle.TestLongRaws (
|
||||||
IntCol number(9) not null,
|
IntCol number(9) not null,
|
||||||
LongRawCol long raw not null
|
LongRawCol long raw not null
|
||||||
) tablespace users;
|
);
|
||||||
|
|
||||||
create table cx_Oracle.TestTempTable (
|
create table cx_Oracle.TestTempTable (
|
||||||
IntCol number(9) not null,
|
IntCol number(9) not null,
|
||||||
StringCol varchar2(100),
|
StringCol varchar2(100),
|
||||||
constraint TestTempTable_pk primary key (IntCol)
|
constraint TestTempTable_pk primary key (IntCol)
|
||||||
using index tablespace users
|
);
|
||||||
) tablespace users;
|
|
||||||
|
|
||||||
create table cx_Oracle.TestArrayDML (
|
create table cx_Oracle.TestArrayDML (
|
||||||
IntCol number(9) not null,
|
IntCol number(9) not null,
|
||||||
StringCol varchar2(100),
|
StringCol varchar2(100),
|
||||||
IntCol2 number(3),
|
IntCol2 number(3),
|
||||||
constraint TestArrayDML_pk primary key (IntCol)
|
constraint TestArrayDML_pk primary key (IntCol)
|
||||||
using index tablespace users
|
);
|
||||||
) tablespace users;
|
|
||||||
|
|
||||||
create table cx_Oracle.TestObjects (
|
create table cx_Oracle.TestObjects (
|
||||||
IntCol number(9) not null,
|
IntCol number(9) not null,
|
||||||
@ -141,13 +140,13 @@ create table cx_Oracle.TestTimestamps (
|
|||||||
IntCol number(9) not null,
|
IntCol number(9) not null,
|
||||||
TimestampCol timestamp not null,
|
TimestampCol timestamp not null,
|
||||||
NullableCol timestamp
|
NullableCol timestamp
|
||||||
) tablespace users;
|
);
|
||||||
|
|
||||||
create table cx_Oracle.TestIntervals (
|
create table cx_Oracle.TestIntervals (
|
||||||
IntCol number(9) not null,
|
IntCol number(9) not null,
|
||||||
IntervalCol interval day to second not null,
|
IntervalCol interval day to second not null,
|
||||||
NullableCol interval day to second
|
NullableCol interval day to second
|
||||||
) tablespace users;
|
);
|
||||||
|
|
||||||
-- populate tables
|
-- populate tables
|
||||||
begin
|
begin
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user