Comment 1 for bug 1451693

Revision history for this message
Aruna Sadashiva (aruna-sadashiva) wrote :

Please try with multiple columns and also multiple rows.

These are the various tables qa tested with:

create table t1(c1 char(30000));
create table t2(c1 varchar(30000));
create table t3(c1 char(40000));
create table t4(c1 varchar(40000));
create table t5(c1 char(30000) not null);
create table t6(c1 varchar(30000) not null);
create table t7(c1 char(40000) not null);
create table t8(c1 varchar(40000)not null);
create table t9(c1 varchar(200000));
create table t10(c1 varchar(200000) not null);
create table t11(c1 char(40000), c2 varchar(40000));
create table t12(c1 char(40000) not null, c2 varchar(40000) not null);
create table t13(c1 char(200000), c2 varchar(200000));
create table t14(c1 char(200000) not null, c2 varchar(200000) not null);
create table t15(c1 char(200000) not null, c2 varchar(200000));
create table t16(c1 char(200000), c2 varchar(200000) not null);
create table t17(c1 char (30000), c2 varchar(30000));
create table t18(c1 char (30000) not null, c2 varchar(30000) not null);

The junit test file is attached.