Sign in
third-party-mirror
/
glassfish
/
8aec880e4e2845dc2e7ce4bdf7fae4fa52c098d2
/
.
/
appserver
/
tests
/
appserv-tests
/
devtests
/
ejb
/
cmp
/
ejbflushwithsqlexception
/
sql
/
create_pointbase.sql
blob: 4133c3f8adb859f8a2cc33400041ab2acbd7c86f [
file
]
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
)
);