Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.0-JSR-6
-
None
-
None
-
WinXp, JDK 1.5.0_06-b05, Oracle 10.1.0.4
Description
The attached script is a generic table copy Groovy script. It gets a repeatable VerifyError on line 96. To make it easy for you, below is the table definition and data. Create this simple table in two databases and run the attached script (You have to setup the db connection parameters at the top of the script first)
CREATE TABLE "KOLC"."DELETE_ME_SOON"
( "COLUMN1" NUMBER(*,0) NOT NULL ENABLE,
"COLUMN2" VARCHAR2(200 BYTE),
CONSTRAINT "DELETE_ME_SOON_PK" PRIMARY KEY ("COLUMN1") ENABLE
) ;
insert into KOLC.DELETE_ME_SOON (COLUMN1, COLUMN2) values (1, 'Hi Mom')
insert into KOLC.DELETE_ME_SOON (COLUMN1, COLUMN2) values (2, 'Hi Dad')