Changeset: 4ce27514e01b for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=4ce27514e01b Added Files: sql/test/centipede/Tests/olap.stable.err sql/test/centipede/Tests/olap.stable.out Branch: default Log Message:
Approve the output of centipede diffs (278 lines): diff --git a/sql/test/centipede/Tests/olap.stable.err b/sql/test/centipede/Tests/olap.stable.err new file mode 100644 --- /dev/null +++ b/sql/test/centipede/Tests/olap.stable.err @@ -0,0 +1,35 @@ +stderr of test 'olap` in directory 'sql/test/centipede` itself: + + +# 07:22:17 > +# 07:22:17 > "mserver5" "--debug=10" "--set" "gdk_nr_threads=0" "--set" "mapi_open=true" "--set" "mapi_port=32624" "--set" "mapi_usock=/var/tmp/mtest-16917/.s.monetdb.32624" "--set" "monet_prompt=" "--forcemito" "--set" "mal_listing=2" "--dbpath=/export/scratch1/mk/current//Linux/var/MonetDB/mTests_sql_test_centipede" "--set" "mal_listing=0" +# 07:22:17 > + +# builtin opt gdk_dbpath = /export/scratch1/mk/current//Linux/var/monetdb5/dbfarm/demo +# builtin opt gdk_debug = 0 +# builtin opt gdk_vmtrim = yes +# builtin opt monet_prompt = > +# builtin opt monet_daemon = no +# builtin opt mapi_port = 50000 +# builtin opt mapi_open = false +# builtin opt mapi_autosense = false +# builtin opt sql_optimizer = default_pipe +# builtin opt sql_debug = 0 +# cmdline opt gdk_nr_threads = 0 +# cmdline opt mapi_open = true +# cmdline opt mapi_port = 32624 +# cmdline opt mapi_usock = /var/tmp/mtest-16917/.s.monetdb.32624 +# cmdline opt monet_prompt = +# cmdline opt mal_listing = 2 +# cmdline opt gdk_dbpath = /export/scratch1/mk/current//Linux/var/MonetDB/mTests_sql_test_centipede +# cmdline opt mal_listing = 0 + +# 07:22:17 > +# 07:22:17 > "mclient" "-lsql" "-ftest" "-Eutf-8" "-i" "-e" "--host=/var/tmp/mtest-16917" "--port=32624" +# 07:22:17 > + + +# 07:22:18 > +# 07:22:18 > "Done." +# 07:22:18 > + diff --git a/sql/test/centipede/Tests/olap.stable.out b/sql/test/centipede/Tests/olap.stable.out new file mode 100644 --- /dev/null +++ b/sql/test/centipede/Tests/olap.stable.out @@ -0,0 +1,233 @@ +stdout of test 'olap` in directory 'sql/test/centipede` itself: + + +# 07:22:17 > +# 07:22:17 > "mserver5" "--debug=10" "--set" "gdk_nr_threads=0" "--set" "mapi_open=true" "--set" "mapi_port=32624" "--set" "mapi_usock=/var/tmp/mtest-16917/.s.monetdb.32624" "--set" "monet_prompt=" "--forcemito" "--set" "mal_listing=2" "--dbpath=/export/scratch1/mk/current//Linux/var/MonetDB/mTests_sql_test_centipede" "--set" "mal_listing=0" +# 07:22:17 > + +# MonetDB 5 server v11.16.0 +# This is an unreleased version +# Serving database 'mTests_sql_test_centipede', using 8 threads +# Compiled for x86_64-unknown-linux-gnu/64bit with 64bit OIDs dynamically linked +# Found 15.629 GiB available main-memory. +# Copyright (c) 1993-July 2008 CWI. +# Copyright (c) August 2008-2013 MonetDB B.V., all rights reserved +# Visit http://www.monetdb.org/ for further information +# Listening for connection requests on mapi:monetdb://vienna.ins.cwi.nl:32624/ +# Listening for UNIX domain connection requests on mapi:monetdb:///var/tmp/mtest-16917/.s.monetdb.32624 +# MonetDB/GIS module loaded +# MonetDB/JAQL module loaded +# MonetDB/SQL module loaded + +Ready. +# SQL catalog created, loading sql scripts once +# loading sql script: 09_like.sql +# loading sql script: 10_math.sql +# loading sql script: 11_times.sql +# loading sql script: 12_url.sql +# loading sql script: 13_date.sql +# loading sql script: 14_inet.sql +# loading sql script: 15_querylog.sql +# loading sql script: 16_tracelog.sql +# loading sql script: 17_compress.sql +# loading sql script: 18_dictionary.sql +# loading sql script: 19_cluster.sql +# loading sql script: 20_vacuum.sql +# loading sql script: 21_dependency_functions.sql +# loading sql script: 22_clients.sql +# loading sql script: 23_skyserver.sql +# loading sql script: 24_zorder.sql +# loading sql script: 25_debug.sql +# loading sql script: 26_sysmon.sql +# loading sql script: 39_analytics.sql +# loading sql script: 40_geom.sql +# loading sql script: 40_json.sql +# loading sql script: 75_storagemodel.sql +# loading sql script: 80_udf.sql +# loading sql script: 99_system.sql + +# 07:22:17 > +# 07:22:17 > "mclient" "-lsql" "-ftest" "-Eutf-8" "-i" "-e" "--host=/var/tmp/mtest-16917" "--port=32624" +# 07:22:17 > + +#create table Rc(i int, j int); +#create table Sc(a int, b int); +#insert into Rc values (1,1), (2,3), (2,4), (2,5), (3,3); +[ 5 ] +#insert into Sc values (1,1), (1,3); +[ 2 ] +#select * from Rc; +% sys.rc, sys.rc # table_name +% i, j # name +% int, int # type +% 1, 1 # length +[ 1, 1 ] +[ 2, 3 ] +[ 2, 4 ] +[ 2, 5 ] +[ 3, 3 ] +#select * from Sc; +% sys.sc, sys.sc # table_name +% a, b # name +% int, int # type +% 1, 1 # length +[ 1, 1 ] +[ 1, 3 ] +#set optimizer='centipede_pipe'; +#select i,count(*) from Rc group by i; +% sys.rc, sys.L1 # table_name +% i, L1 # name +% int, wrd # type +% 1, 1 # length +[ 1, 1 ] +[ 2, 3 ] +[ 3, 1 ] +#select j,count(*) from Rc group by j; +% sys.rc, sys.L1 # table_name +% j, L1 # name +% int, wrd # type +% 1, 1 # length +[ 1, 1 ] +[ 3, 2 ] +[ 4, 1 ] +[ 5, 1 ] +#select a,count(*) from Sc group by a; +% sys.sc, sys.L1 # table_name +% a, L1 # name +% int, wrd # type +% 1, 1 # length +[ 1, 2 ] +#select b,count(*) from Sc group by b; +% sys.sc, sys.L1 # table_name +% b, L1 # name +% int, wrd # type +% 1, 1 # length +[ 1, 1 ] +[ 3, 1 ] +#select i,sum(j) from Rc group by i; +% sys.rc, sys.L1 # table_name +% i, L1 # name +% int, bigint # type +% 1, 2 # length +[ 1, 1 ] +[ 2, 12 ] +[ 3, 3 ] +#select j,sum(i) from Rc group by j; +% sys.rc, sys.L1 # table_name +% j, L1 # name +% int, bigint # type +% 1, 1 # length +[ 1, 1 ] +[ 3, 5 ] +[ 4, 2 ] +[ 5, 2 ] +#select a,sum(b) from Sc group by a; +% sys.sc, sys.L1 # table_name +% a, L1 # name +% int, bigint # type +% 1, 1 # length +[ 1, 4 ] +#select b,sum(a) from Sc group by b; +% sys.sc, sys.L1 # table_name +% b, L1 # name +% int, bigint # type +% 1, 1 # length +[ 1, 1 ] +[ 3, 1 ] +#select i,avg(j) from Rc group by i; +% sys.rc, sys.L1 # table_name +% i, L1 # name +% int, double # type +% 1, 24 # length +[ 1, 1 ] +[ 2, 4.25 ] +[ 3, 3 ] +#select j,avg(i) from Rc group by j; +% sys.rc, sys.L1 # table_name +% j, L1 # name +% int, double # type +% 1, 24 # length +[ 1, 1 ] +[ 3, 2.5 ] +[ 4, 2 ] +[ 5, 2 ] +#select a,avg(b) from Sc group by a; +% sys.sc, sys.L1 # table_name +% a, L1 # name +% int, double # type +% 1, 24 # length +[ 1, 2 ] +#select b,avg(a) from Sc group by b; +% sys.sc, sys.L1 # table_name +% b, L1 # name +% int, double # type +% 1, 24 # length +[ 1, 1 ] +[ 3, 1 ] +#select i,min(j) from Rc group by i; +% sys.rc, sys.L1 # table_name +% i, L1 # name +% int, int # type +% 1, 1 # length +[ 1, 1 ] +[ 2, 3 ] +[ 3, 3 ] +#select j,min(i) from Rc group by j; +% sys.rc, sys.L1 # table_name +% j, L1 # name +% int, int # type +% 1, 1 # length +[ 1, 1 ] +[ 3, 2 ] +[ 4, 2 ] +[ 5, 2 ] +#select a,min(b) from Sc group by a; +% sys.sc, sys.L1 # table_name +% a, L1 # name +% int, int # type +% 1, 1 # length +[ 1, 1 ] +#select b,min(a) from Sc group by b; +% sys.sc, sys.L1 # table_name +% b, L1 # name +% int, int # type +% 1, 1 # length +[ 1, 1 ] +[ 3, 1 ] +#select i,max(j) from Rc group by i; +% sys.rc, sys.L1 # table_name +% i, L1 # name +% int, int # type +% 1, 1 # length +[ 1, 1 ] +[ 2, 5 ] +[ 3, 3 ] +#select j,max(i) from Rc group by j; +% sys.rc, sys.L1 # table_name +% j, L1 # name +% int, int # type +% 1, 1 # length +[ 1, 1 ] +[ 3, 3 ] +[ 4, 2 ] +[ 5, 2 ] +#select a,max(b) from Sc group by a; +% sys.sc, sys.L1 # table_name +% a, L1 # name +% int, int # type +% 1, 1 # length +[ 1, 3 ] +#select b,max(a) from Sc group by b; +% sys.sc, sys.L1 # table_name +% b, L1 # name +% int, int # type +% 1, 1 # length +[ 1, 1 ] +[ 3, 1 ] +#drop table Rc; +#drop table Sc; + +# 07:22:18 > +# 07:22:18 > "Done." +# 07:22:18 > + _______________________________________________ checkin-list mailing list [email protected] http://mail.monetdb.org/mailman/listinfo/checkin-list
