MonetDB: Mar2018 - add stable output

2018-04-15 Thread Niels Nes
Changeset: 8607024b6183 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=8607024b6183
Added Files:

sql/test/BugTracker-2018/Tests/multiple-insertinto-table-Bug-6578.stable.err

sql/test/BugTracker-2018/Tests/multiple-insertinto-table-Bug-6578.stable.out
Branch: Mar2018
Log Message:

add stable output


diffs (128 lines):

diff --git 
a/sql/test/BugTracker-2018/Tests/multiple-insertinto-table-Bug-6578.stable.err 
b/sql/test/BugTracker-2018/Tests/multiple-insertinto-table-Bug-6578.stable.err
new file mode 100644
--- /dev/null
+++ 
b/sql/test/BugTracker-2018/Tests/multiple-insertinto-table-Bug-6578.stable.err
@@ -0,0 +1,35 @@
+stderr of test 'multiple-insertinto-table-Bug-6578` in directory 
'sql/test/BugTracker-2018` itself:
+
+
+# 19:28:49 >  
+# 19:28:49 >  "mserver5" "--debug=10" "--set" "gdk_nr_threads=0" "--set" 
"mapi_open=true" "--set" "mapi_port=38573" "--set" 
"mapi_usock=/var/tmp/mtest-21940/.s.monetdb.38573" "--set" "monet_prompt=" 
"--forcemito" 
"--dbpath=/home/niels/scratch/rc-old/Linux-x86_64/var/MonetDB/mTests_sql_test_BugTracker-2018"
 "--set" "embedded_c=true"
+# 19:28:49 >  
+
+# builtin opt  gdk_dbpath = 
/home/niels/scratch/rc-old/Linux-x86_64/var/monetdb5/dbfarm/demo
+# builtin opt  gdk_debug = 0
+# builtin opt  gdk_vmtrim = no
+# builtin opt  monet_prompt = >
+# builtin opt  monet_daemon = no
+# builtin opt  mapi_port = 5
+# 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 = 38573
+# cmdline opt  mapi_usock = /var/tmp/mtest-21940/.s.monetdb.38573
+# cmdline opt  monet_prompt = 
+# cmdline opt  gdk_dbpath = 
/home/niels/scratch/rc-old/Linux-x86_64/var/MonetDB/mTests_sql_test_BugTracker-2018
+# cmdline opt  embedded_c = true
+# cmdline opt  gdk_debug = 553648138
+
+# 19:28:49 >  
+# 19:28:49 >  "mclient" "-lsql" "-ftest" "-tnone" "-Eutf-8" "-i" "-e" 
"--host=/var/tmp/mtest-21940" "--port=38573"
+# 19:28:49 >  
+
+
+# 19:28:49 >  
+# 19:28:49 >  "Done."
+# 19:28:49 >  
+
diff --git 
a/sql/test/BugTracker-2018/Tests/multiple-insertinto-table-Bug-6578.stable.out 
b/sql/test/BugTracker-2018/Tests/multiple-insertinto-table-Bug-6578.stable.out
new file mode 100644
--- /dev/null
+++ 
b/sql/test/BugTracker-2018/Tests/multiple-insertinto-table-Bug-6578.stable.out
@@ -0,0 +1,83 @@
+stdout of test 'multiple-insertinto-table-Bug-6578` in directory 
'sql/test/BugTracker-2018` itself:
+
+
+# 19:28:49 >  
+# 19:28:49 >  "mserver5" "--debug=10" "--set" "gdk_nr_threads=0" "--set" 
"mapi_open=true" "--set" "mapi_port=38573" "--set" 
"mapi_usock=/var/tmp/mtest-21940/.s.monetdb.38573" "--set" "monet_prompt=" 
"--forcemito" 
"--dbpath=/home/niels/scratch/rc-old/Linux-x86_64/var/MonetDB/mTests_sql_test_BugTracker-2018"
 "--set" "embedded_c=true"
+# 19:28:49 >  
+
+# MonetDB 5 server v11.29.2
+# This is an unreleased version
+# Serving database 'mTests_sql_test_BugTracker-2018', using 8 threads
+# Compiled for x86_64-unknown-linux-gnu/64bit
+# Found 15.387 GiB available main-memory.
+# Copyright (c) 1993 - July 2008 CWI.
+# Copyright (c) August 2008 - 2018 MonetDB B.V., all rights reserved
+# Visit https://www.monetdb.org/ for further information
+# Listening for connection requests on mapi:monetdb://xps13:38573/
+# Listening for UNIX domain connection requests on 
mapi:monetdb:///var/tmp/mtest-21940/.s.monetdb.38573
+# MonetDB/GIS module loaded
+# MonetDB/SQL module loaded
+
+Ready.
+
+# 19:28:49 >  
+# 19:28:49 >  "mclient" "-lsql" "-ftest" "-tnone" "-Eutf-8" "-i" "-e" 
"--host=/var/tmp/mtest-21940" "--port=38573"
+# 19:28:49 >  
+
+#START TRANSACTION;
+#CREATE TABLE "x" (
+#  "a1"   CHARACTER LARGE OBJECT,
+#  "a2"   CHARACTER LARGE OBJECT
+#);
+#COPY 5 RECORDS INTO "x" FROM stdin USING DELIMITERS '|','\n','"';
+#"fiets"|"damesfiets"
+#"fiets"|"herenfiets"
+#"auto"|"personenwag"
+#"auto"|"bedrijfsauto"
+#"auto"|"personenauto"
+[ 5]
+#COMMIT;
+#START TRANSACTION;
+#CREATE TABLE "y" (
+#  "paramname" CHARACTER LARGE OBJECT,
+#  "value" CHARACTER LARGE OBJECT
+#);
+#COPY 1 RECORDS INTO "y" FROM stdin USING DELIMITERS '|','\n','"';
+#"1"|"something"
+[ 1]
+#COMMIT;
+#start transaction;
+#insert into y values ('0','boot');
+[ 1]
+#insert into y values ('0','auto');
+[ 1]
+#select count(*)
+#from x,
+# (select value as a1 from y where paramname='0') as v
+#where x.a1 = v.a1;
+% sys.L5 # table_name
+% L5 # name
+% bigint # type
+% 1 # length
+[ 3]
+#rollback;
+#start transaction;
+#insert into y values ('0','boot'), ('0','auto');
+[ 2]
+#select count(*)
+#from x,
+# (select value as a1 from y where paramname='0') as v
+#where x.a1 = v.a1;
+% sys.L5 # table_name
+% L5 # name
+% bigint # type
+% 1 # length
+[ 3]
+#rollback;
+#drop table x;
+#drop table y;
+
+# 19:28:49 >  
+# 19:28:49 >  "Done."
+# 19:28:49 >  
+
___

MonetDB: Mar2018 - add stable output

2018-04-14 Thread Niels Nes
Changeset: 5f8585777f18 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=5f8585777f18
Added Files:

sql/test/BugTracker-2018/Tests/sqlitelogictest-aritmetic-expressions-handling.Bug-6576.stable.err

sql/test/BugTracker-2018/Tests/sqlitelogictest-aritmetic-expressions-handling.Bug-6576.stable.out
Branch: Mar2018
Log Message:

add stable output


diffs (209 lines):

diff --git 
a/sql/test/BugTracker-2018/Tests/sqlitelogictest-aritmetic-expressions-handling.Bug-6576.stable.err
 
b/sql/test/BugTracker-2018/Tests/sqlitelogictest-aritmetic-expressions-handling.Bug-6576.stable.err
new file mode 100644
--- /dev/null
+++ 
b/sql/test/BugTracker-2018/Tests/sqlitelogictest-aritmetic-expressions-handling.Bug-6576.stable.err
@@ -0,0 +1,35 @@
+stderr of test 'sqlitelogictest-aritmetic-expressions-handling.Bug-6576` in 
directory 'sql/test/BugTracker-2018` itself:
+
+
+# 16:20:37 >  
+# 16:20:37 >  "mserver5" "--debug=10" "--set" "gdk_nr_threads=0" "--set" 
"mapi_open=true" "--set" "mapi_port=39398" "--set" 
"mapi_usock=/var/tmp/mtest-2283/.s.monetdb.39398" "--set" "monet_prompt=" 
"--forcemito" 
"--dbpath=/home/niels/scratch/rc-old/Linux-x86_64/var/MonetDB/mTests_sql_test_BugTracker-2018"
 "--set" "embedded_c=true"
+# 16:20:37 >  
+
+# builtin opt  gdk_dbpath = 
/home/niels/scratch/rc-old/Linux-x86_64/var/monetdb5/dbfarm/demo
+# builtin opt  gdk_debug = 0
+# builtin opt  gdk_vmtrim = no
+# builtin opt  monet_prompt = >
+# builtin opt  monet_daemon = no
+# builtin opt  mapi_port = 5
+# 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 = 39398
+# cmdline opt  mapi_usock = /var/tmp/mtest-2283/.s.monetdb.39398
+# cmdline opt  monet_prompt = 
+# cmdline opt  gdk_dbpath = 
/home/niels/scratch/rc-old/Linux-x86_64/var/MonetDB/mTests_sql_test_BugTracker-2018
+# cmdline opt  embedded_c = true
+# cmdline opt  gdk_debug = 553648138
+
+# 16:20:37 >  
+# 16:20:37 >  "mclient" "-lsql" "-ftest" "-tnone" "-Eutf-8" "-i" "-e" 
"--host=/var/tmp/mtest-2283" "--port=39398"
+# 16:20:37 >  
+
+
+# 16:20:37 >  
+# 16:20:37 >  "Done."
+# 16:20:37 >  
+
diff --git 
a/sql/test/BugTracker-2018/Tests/sqlitelogictest-aritmetic-expressions-handling.Bug-6576.stable.out
 
b/sql/test/BugTracker-2018/Tests/sqlitelogictest-aritmetic-expressions-handling.Bug-6576.stable.out
new file mode 100644
--- /dev/null
+++ 
b/sql/test/BugTracker-2018/Tests/sqlitelogictest-aritmetic-expressions-handling.Bug-6576.stable.out
@@ -0,0 +1,164 @@
+stdout of test 'sqlitelogictest-aritmetic-expressions-handling.Bug-6576` in 
directory 'sql/test/BugTracker-2018` itself:
+
+
+# 16:20:37 >  
+# 16:20:37 >  "mserver5" "--debug=10" "--set" "gdk_nr_threads=0" "--set" 
"mapi_open=true" "--set" "mapi_port=39398" "--set" 
"mapi_usock=/var/tmp/mtest-2283/.s.monetdb.39398" "--set" "monet_prompt=" 
"--forcemito" 
"--dbpath=/home/niels/scratch/rc-old/Linux-x86_64/var/MonetDB/mTests_sql_test_BugTracker-2018"
 "--set" "embedded_c=true"
+# 16:20:37 >  
+
+# MonetDB 5 server v11.29.2
+# This is an unreleased version
+# Serving database 'mTests_sql_test_BugTracker-2018', using 8 threads
+# Compiled for x86_64-unknown-linux-gnu/64bit
+# Found 15.387 GiB available main-memory.
+# Copyright (c) 1993 - July 2008 CWI.
+# Copyright (c) August 2008 - 2018 MonetDB B.V., all rights reserved
+# Visit https://www.monetdb.org/ for further information
+# Listening for connection requests on mapi:monetdb://xps13:39398/
+# Listening for UNIX domain connection requests on 
mapi:monetdb:///var/tmp/mtest-2283/.s.monetdb.39398
+# MonetDB/GIS module loaded
+# MonetDB/SQL module loaded
+
+Ready.
+
+# 16:20:37 >  
+# 16:20:37 >  "mclient" "-lsql" "-ftest" "-tnone" "-Eutf-8" "-i" "-e" 
"--host=/var/tmp/mtest-2283" "--port=39398"
+# 16:20:37 >  
+
+#SELECT -2 * 50; -- -100
+% .L2 # table_name
+% L2 # name
+% smallint # type
+% 4 # length
+[ -100 ]
+#SELECT ALL - 0 * 36; -- 0
+% .L2 # table_name
+% L2 # name
+% smallint # type
+% 1 # length
+[ 0]
+#SELECT ALL - 33 + - 77 * 0 AS col1; -- -33
+% .L2 # table_name
+% col1 # name
+% int # type
+% 3 # length
+[ -33  ]
+#SELECT + 12 + - 0 * + 70; -- 12
+% .L2 # table_name
+% L2 # name
+% int # type
+% 2 # length
+[ 12   ]
+#SELECT - ( ( 0 ) ) * 78; -- 0
+% .L2 # table_name
+% L2 # name
+% smallint # type
+% 1 # length
+[ 0]
+#SELECT ALL - 4 * + 0 * - - 48 col1; -- 0
+% .L2 # table_name
+% col1 # name
+% int # type
+% 1 # length
+[ 0]
+#SELECT - 0 * - 15 AS col0; -- 0
+% .L2 # table_name
+% col0 # name
+% smallint # type
+% 1 # length
+[ 0]
+#SELECT - 48 * + + 0 + + 94 AS col1; -- 94
+% .L2 # table_name
+% col1 # name
+% smallint # type
+% 2 # length
+[ 94   ]
+#SELECT ALL + - 32 * - 32 + - - 76 - - - 43 * COUNT ( * ) + - + 84 * 0 * + + 
39 + + 44 * + 76; -- 4401
+% .L4 # table_name
+% L4 # name
+% bigint # type
+% 4 # length
+[ 4401 ]