Changeset: 8278337135e7 for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=8278337135e7 Added Files: sql/test/BugTracker-2014/Tests/temporary.Bug-3430.sql Modified Files: monetdb5/modules/mal/Tests/All sql/test/BugTracker-2014/Tests/All Branch: default Log Message:
Add test file temporary.Bug-3430 diffs (34 lines): diff --git a/monetdb5/modules/mal/Tests/All b/monetdb5/modules/mal/Tests/All --- a/monetdb5/modules/mal/Tests/All +++ b/monetdb5/modules/mal/Tests/All @@ -71,6 +71,7 @@ zorder manifold manifoldstr +manifoldaggr #HAVE_RAPTOR?rdf diff --git a/sql/test/BugTracker-2014/Tests/All b/sql/test/BugTracker-2014/Tests/All --- a/sql/test/BugTracker-2014/Tests/All +++ b/sql/test/BugTracker-2014/Tests/All @@ -5,3 +5,4 @@ groupby.Bug-3421 groupby_distict.Bug-3423 current_timestamp.Bug-3427 two-column-aggr-with-null.Bug-3428 +temporary.Bug-3430 diff --git a/sql/test/BugTracker-2014/Tests/temporary.Bug-3430.sql b/sql/test/BugTracker-2014/Tests/temporary.Bug-3430.sql new file mode 100644 --- /dev/null +++ b/sql/test/BugTracker-2014/Tests/temporary.Bug-3430.sql @@ -0,0 +1,10 @@ +create schema tempo; + +create temporary table temp.dummy(i int); + +create temporary table tempo.dummy(i int); +select * from tempo.dummy; +select * from tmp.dummy; + +drop table tmp.dummy; +drop schema tempo; _______________________________________________ checkin-list mailing list [email protected] https://www.monetdb.org/mailman/listinfo/checkin-list
