Run-time error using SDO_GEOMETRY constructor with WKT
Are there limitations when using the WKT in constructor of SDO_GEOMETRY?
select SDO_GEOMETRY('MULTIPOINT (7.627958 50.883906, 7.827958 52.883906)') from dual
results in:
Error code 29532, SQL state 99999: ORA-29532: Java call terminated by uncaught Java exception: java.lang.RuntimeException
ORA-06512: at "MDSYS.SDO_UTIL", line 137
ORA-06512: at "MDSYS.SDO_GEOMETRY", line 76
same result for POLYGON, however, the simpler
SELECT SDO_GEOMETRY('POINT(-79 37)') FROM DUAL;
is OK.
Are multiPoints, Polygons etc. supported from WKT?