Update of /cvsroot/monetdb/sql/src/include
In directory sfp-cvsdas-1.v30.ch3.sourceforge.com:/tmp/cvs-serv1972/src/include

Modified Files:
        sql_catalog.h 
Log Message:

A sequence of group new and derives is now closed with a group.done (does
the last step ie a group.new or derive).
This makes the code in merge table a bit cleaner (more could be done later)

sql.bind and append/update/delete now have an extra (first) argument,
making them safe to use in the dataflow (ie solved using variable dependencies)
(BREAKS octopus !)

Implemented read only tables. Use 
ALTER TABLE x SET READ ONLY; 
(cannot be reverted currently)

fixed bug in limit/offset handling, now we have 64 bit wrd instead of int.

The new read only required schema changes, ie backup/restore your db.
We therefor claimed some more oid's for internal functions.



Index: sql_catalog.h
===================================================================
RCS file: /cvsroot/monetdb/sql/src/include/sql_catalog.h,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -d -r1.71 -r1.72
--- sql_catalog.h       30 Jan 2010 12:40:59 -0000      1.71
+++ sql_catalog.h       27 Feb 2010 19:27:47 -0000      1.72
@@ -372,6 +372,7 @@
        char *def;
        char unique;            /* NOT UNIQUE, UNIQUE, SUB_UNIQUE */
        int drop_action;        /* only used for alter statements */
+       int storage_type;
 
        struct sql_table *t;
        void *data;
@@ -397,6 +398,7 @@
        bit system;             /* system or user table */
        temp_t persistence;     /* persistent, global or local temporary */
        ca_t commit_action;     /* on commit action */
+       bit readonly;   
        char *query;            /* views and generated may require some query 
 
                                   A generated without a query is simply 


------------------------------------------------------------------------------
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

Reply via email to