Update of /cvsroot/monetdb/sql/src/test/BugTracker-2008/Tests
In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv14856

Modified Files:
      Tag: SQL_2-24
        All 
Added Files:
      Tag: SQL_2-24
        table_update.SF-2080207.sql 
Log Message:
added test for bug #2080207


--- NEW FILE: table_update.SF-2080207.sql ---

CREATE TABLE A
(a varchar(10),
b varchar(10));

CREATE TABLE B
(a varchar(10),
b varchar(10));

insert into a values('1','2');
insert into a values('2','2');
insert into b values('1','2');
insert into b values('3','2');

update A set a='a' where A.a not in (select B.a from B where A.b=B.b);

select * from a;

drop table B;
drop table A;

U All
Index: All
===================================================================
RCS file: /cvsroot/monetdb/sql/src/test/BugTracker-2008/Tests/All,v
retrieving revision 1.1.2.4
retrieving revision 1.1.2.5
diff -u -d -r1.1.2.4 -r1.1.2.5
--- All 28 Aug 2008 10:47:08 -0000      1.1.2.4
+++ All 28 Aug 2008 10:51:41 -0000      1.1.2.5
@@ -17,3 +17,4 @@
 select_not_wrong_result.SF-2080151
 select_in_wrong_result.SF-2080168
 select_between_wrong_result.SF-2080189
+table_update.SF-2080207


-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Monetdb-sql-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-sql-checkins

Reply via email to