Update of /cvsroot/monetdb/sql/src/sql
In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv15340/src/sql

Added Files:
        tracelog.sql 
Log Message:
propagated changes of Monday Oct 26 2009 - Thursday Oct 29 2009
from the Nov2009 branch to the development trunk

  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2009/10/26 - mlkersten: src/sql/tracelog.sql,1.1.2.1
  The missing tracelog definition.
  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2009/10/26 - mlkersten: src/sql/tracelog.sql,1.1.2.2
  Added the return type column, makes live easier.
  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~


--- NEW FILE: tracelog.sql ---
-- 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-2009 MonetDB B.V.
-- All Rights Reserved.

-- make the offline tracing table available for inspection
create function tracelog() 
        returns table (
                event integer,          -- event counter
                clk varchar(20),        -- wallclock, no mtime in kernel
                pc varchar(50),         -- module.function[nr]
                thread int,             -- thread identified
                ticks integer,          -- time in microseconds
                reads integer,          -- number of blocks read
                writes integer,         -- number of blocks written
                rbytes integer,         -- amount of bytes touched
                wbytes integer,         -- amount of bytes written
                type string,            -- return types
                stmt string                     -- actual statement executed
        )
        external name sql.dump_trace;



------------------------------------------------------------------------------
Come build with us! The BlackBerry(R) Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9 - 12, 2009. Register now!
http://p.sf.net/sfu/devconference
_______________________________________________
Monetdb-sql-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-sql-checkins

Reply via email to