Repository: trafodion Updated Branches: refs/heads/master f04ffee5a -> a1ce84aa6
http://git-wip-us.apache.org/repos/asf/trafodion/blob/fb0ab72b/core/sql/regress/executor/TEST130 ---------------------------------------------------------------------- diff --git a/core/sql/regress/executor/TEST130 b/core/sql/regress/executor/TEST130 index 5029c1d..18aa4c1 100755 --- a/core/sql/regress/executor/TEST130 +++ b/core/sql/regress/executor/TEST130 @@ -143,9 +143,11 @@ values((select * from t130lob1)); --test empty_blob(), empty_clob() delete from t130lob2; +insert into t130lob2 values(0,stringtolob('inserted row10')); insert into t130lob2 values (1, empty_blob()); select lobtostring(c2,10) from t130lob2; delete from t130lob2; +insert into t130lob2 values(0,stringtolob('inserted row10')); insert into t130lob2 values (1, empty_clob()); select lobtostring(c2,10) from t130lob2; update t130lob2 set c2=stringtolob('inserted row11');
