Current Scenario :
Table 't1' has a f1 int and f2 char field.
The row is inserted like :
csql>insert into t1 values(10,'100'
);
CSQL>select * from t1;
---------------------------------------------------------
f1 f2
---------------------------------------------------------
10 100'
Expected Output :
CSQL>select * from t1;
---------------------------------------------------------
f1 f2
---------------------------------------------------------
10 100
The below statement is now failing.
insert into t1 values(10,'100'
);