[
https://issues.apache.org/jira/browse/TRAFODION-340?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14660840#comment-14660840
]
Suresh Subbiah commented on TRAFODION-340:
------------------------------------------
I simple test like the one shown below does not show the problem anymore.
Selva, Atanu do you'll think this is still an issue?
create table update_tm (a int not null primary key, b int) ;
insert into update_tm values (1,1),(2,2),(3,3),(4,4),(5,5) ;
begin work ;
update update_tm set b = b + 10 where a > 3 ;
select * from update_tm ;
commit ;
> LP Bug: 1325443 - SELECT after an UPDATE continues to show old values
> ---------------------------------------------------------------------
>
> Key: TRAFODION-340
> URL: https://issues.apache.org/jira/browse/TRAFODION-340
> Project: Apache Trafodion
> Issue Type: Bug
> Components: sql-exe
> Reporter: Atanu Mishra
> Assignee: Suresh Subbiah
> Priority: Blocker
> Fix For: 0.8 (pre-incubation)
>
>
> Reported by Selva --
> Begin work;
> Update some rows in table t ;
> Select * from t;
> Commit work;
> The test was expecting the updated rows to have new values in the select
> statement. But the select statement continue to show the old values.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)