Changeset: 169784c65c00 for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=169784c65c00 Modified Files: sql/src/sql/stats.sql Branch: Jun2010 Log Message:
re-added sql/src/sql/stats.sql (in Jun2010 branch only) While sql/src/sql/stats.sql is no longer required in the default branch, the Jun2010 branch appears not yet ready for it's removal. At least the tests in sql/src/benchmarks/tpch/Tests/ stiil require it, as the definition of SQL function optimizer_stats() does not seems to happen elsewhere in the Jun2010 branch (while it does in the default). diffs (24 lines): diff -r dc4bb05489cf -r 169784c65c00 sql/src/sql/stats.sql --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sql/src/sql/stats.sql Mon May 31 22:18:10 2010 +0200 @@ -0,0 +1,20 @@ +-- The contents of this file are subject to the MonetDB Public License +-- Version 1.1 (the "License"); you may not use this file except in +-- compliance with the License. You may obtain a copy of the License at +-- http://monetdb.cwi.nl/Legal/MonetDBLicense-1.1.html +-- +-- Software distributed under the License is distributed on an "AS IS" +-- basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the +-- License for the specific language governing rights and limitations +-- under the License. +-- +-- The Original Code is the MonetDB Database System. +-- +-- The Initial Developer of the Original Code is CWI. +-- Copyright August 2008-2010 MonetDB B.V. +-- All Rights Reserved. + +-- show the optimizer statistics maintained by the SQL frontend +create function optimizer_stats () + returns table (rewrite string, count int) + external name sql.dump_opt_stats; _______________________________________________ Checkin-list mailing list [email protected] http://mail.monetdb.org/mailman/listinfo/checkin-list
