Changeset: d8fcc010263f for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=d8fcc010263f
Branch: Oct2020
Log Message:

merged


diffs (32 lines):

diff --git a/sql/test/miscellaneous/Tests/simple_selects.sql 
b/sql/test/miscellaneous/Tests/simple_selects.sql
--- a/sql/test/miscellaneous/Tests/simple_selects.sql
+++ b/sql/test/miscellaneous/Tests/simple_selects.sql
@@ -201,6 +201,12 @@ rollback;
 select * from (select 1 as c0, 2 as c0) as sub;
        -- 1 2
 
+select *,* from (select 1 as c0, 2 as c0) as sub;
+       --  1 2 1 2
+
+select * from (select 1 as c0, max(k) as c0 from (select 2, 3) tst(k, name) 
group by name) as sub;
+       -- 1 2
+
 select cast(interval '3' second as clob);
        -- 3.000
 
diff --git a/sql/test/miscellaneous/Tests/simple_selects.stable.out 
b/sql/test/miscellaneous/Tests/simple_selects.stable.out
--- a/sql/test/miscellaneous/Tests/simple_selects.stable.out
+++ b/sql/test/miscellaneous/Tests/simple_selects.stable.out
@@ -386,6 +386,12 @@ stdout of test 'simple_selects` in direc
 % tinyint,     tinyint # type
 % 1,   1 # length
 [ 1,   2       ]
+#select * from (select 1 as c0, max(k) as c0 from (select 2, 3) tst(k, name) 
group by name) as sub;
+% .sub,        .sub # table_name
+% c0,  c0 # name
+% tinyint,     tinyint # type
+% 1,   1 # length
+[ 1,   2       ]
 #select cast(interval '3' second as clob);
 % .%1 # table_name
 % %1 # name
_______________________________________________
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to