Sign in
third-party-mirror
/
glassfish
/
9a68cc8076d14c77aba791fd5c955b7c7a175593
/
.
/
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
)
);