Changeset: a4254c9306da for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=a4254c9306da
Added Files:
        sql/test/BugTracker-2018/Tests/prepared-statement-with-udf.Bug-6650.sql
Modified Files:
        sql/test/BugTracker-2018/Tests/All
Branch: Aug2018
Log Message:

Added test for bug 6650


diffs (22 lines):

diff --git a/sql/test/BugTracker-2018/Tests/All 
b/sql/test/BugTracker-2018/Tests/All
--- a/sql/test/BugTracker-2018/Tests/All
+++ b/sql/test/BugTracker-2018/Tests/All
@@ -85,3 +85,4 @@ timestamp-as-boolean.Bug-6642
 timestamp-roundtrip.Bug-6640
 convert-key.Bug-6648
 update-transaction-select.Bug-6649
+prepared-statement-with-udf.Bug-6650
diff --git 
a/sql/test/BugTracker-2018/Tests/prepared-statement-with-udf.Bug-6650.sql 
b/sql/test/BugTracker-2018/Tests/prepared-statement-with-udf.Bug-6650.sql
new file mode 100644
--- /dev/null
+++ b/sql/test/BugTracker-2018/Tests/prepared-statement-with-udf.Bug-6650.sql
@@ -0,0 +1,9 @@
+start transaction;
+create table onet (a text, b text, c text);
+insert into onet values ('a', 'b', 'c');
+create function get_onet(d text) returns table (aa text, bb text, cc text) 
return table(select * from onet where a = d);
+prepare select * from get_onet(?);
+exec **('a');
+drop function get_onet;
+drop table onet;
+rollback;
_______________________________________________
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to