Sign in
third-party-mirror
/
glassfish
/
fa4c67cd4718f0686a9ec6d28cc85c192634f835
/
.
/
appserver
/
tests
/
appserv-tests
/
devtests
/
ejb
/
cmp
/
ejbflushwithsqlexception
/
sql
/
create_pointbase.sql
blob: 4133c3f8adb859f8a2cc33400041ab2acbd7c86f [
file
] [
log
] [
blame
]
Drop
table
A1
;
Drop
table
A2
;
CREATE
TABLE
A1
(
id char
(
3
)
not
null
constraint
pk_A1_id
primary
key
,
name char
(
5
)
);
CREATE
TABLE
A2
(
id char
(
3
)
not
null
constraint
pk_A2_id
primary
key
,
name char
(
5
)
);