I created the table but I am not able to insert the polygon coordinates.
I tried the following, but it didn't work.
create table TEST5(
fig_name char(10),
fig_color char(10),
circle_loc circle,
polygon_loc polygon);
insert into TEST5(fig_name,fig_color,polygon_loc)
values
('poly' , 'red', POLYGON(POINT(9,3),POINT(9,9),POINT(5,9),POINT(5,3));