Update of /cvsroot/monetdb/sql/src/sql
In directory sfp-cvsdas-1.v30.ch3.sourceforge.com:/tmp/cvs-serv1562/sql
Modified Files:
dictionary.sql
Log Message:
The garbage collection administration has been changed. Every variable record
now comes with an end-of-life field (eolife), which denotes the instruction
whereafter
the BAT variable reference counter can be decremented. The garbage collector is
never called automagically on MAL functions, because there may be other
pressing needs to retain them. This means that MAL functions defined and
used in the context of SQL, and which are not inlined, may cause a leakage.
The garbage collection has become part of each interpreter step.
The new approach makes the SQL/MAL plans half te size as before.
Index: dictionary.sql
===================================================================
RCS file: /cvsroot/monetdb/sql/src/sql/dictionary.sql,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- dictionary.sql 23 Feb 2010 17:08:10 -0000 1.4
+++ dictionary.sql 14 Mar 2010 08:27:16 -0000 1.5
@@ -14,10 +14,10 @@
-- Copyright August 2008-2010 MonetDB B.V.
-- All Rights Reserved.
-create procedure dictionary (s string, t string)
- external name sql.dictcompress;
-create procedure undoDictionary (s string, t string)
- external name sql.dictdecompress;
+create procedure newdictionary (s string, t string)
+ external name sql.newdictionary;
+create procedure dropdictionary (s string, t string)
+ external name sql.dropdictionary;
-create procedure initializeDictionary ()
+create procedure initializedictionary ()
external name dictionary.initialize;
------------------------------------------------------------------------------
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
Monetdb-sql-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-sql-checkins