Changeset: 014fe896b66f for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=014fe896b66f
Modified Files:
        sql/src/test/BugTracker/Tests/join_table_with_floats.SF-1907060.sql
        
sql/src/test/BugTracker/Tests/join_table_with_floats.SF-1907060.stable.out
Branch: Oct2010
Log Message:

make tables unique


diffs (39 lines):

diff -r 80cbba24456b -r 014fe896b66f 
sql/src/test/BugTracker/Tests/join_table_with_floats.SF-1907060.sql
--- a/sql/src/test/BugTracker/Tests/join_table_with_floats.SF-1907060.sql       
Tue Oct 26 12:33:54 2010 +0200
+++ b/sql/src/test/BugTracker/Tests/join_table_with_floats.SF-1907060.sql       
Tue Oct 26 12:41:56 2010 +0200
@@ -1,8 +1,8 @@
-create table t2 (id float);
-create table t1 (age float);
+create table t1907060_2 (id float);
+create table t1907060_1 (age float);
 
-select age from t1, t2 where id < 0.0 limit 10;
+select age from t1907060_1, t1907060_2 where id < 0.0 limit 10;
 
-drop table t1;
-drop table t2;
+drop table t1907060_1;
+drop table t1907060_2;
 
diff -r 80cbba24456b -r 014fe896b66f 
sql/src/test/BugTracker/Tests/join_table_with_floats.SF-1907060.stable.out
--- 
a/sql/src/test/BugTracker/Tests/join_table_with_floats.SF-1907060.stable.out    
    Tue Oct 26 12:33:54 2010 +0200
+++ 
b/sql/src/test/BugTracker/Tests/join_table_with_floats.SF-1907060.stable.out    
    Tue Oct 26 12:41:56 2010 +0200
@@ -22,11 +22,14 @@
 
 Over..
 
-# 00:15:27 >  
-# 00:15:27 >  mclient -lsql -umonetdb -Pmonetdb --host=amelia --port=30709 
-# 00:15:27 >  
+# 12:40:48 >  
+# 12:40:48 >  mclient -lsql -ftest -i -e --host=volund --port=31465 
+# 12:40:48 >  
 
-% sys.t1 # table_name
+#create table t1907060_2 (id float);
+#create table t1907060_1 (age float);
+#select age from t1907060_1, t1907060_2 where id < 0.0 limit 10;
+% sys.t1907060_1 # table_name
 % age # name
 % double # type
 % 22 # length
_______________________________________________
Checkin-list mailing list
[email protected]
http://mail.monetdb.org/mailman/listinfo/checkin-list

Reply via email to