Update of /cvsroot/monetdb/sql/src/storage
In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv22346/src/storage

Modified Files:
        store.mx 
Log Message:
propagated changes of Tuesday Jul 15 2008 - Thursday Jul 17 2008
from the SQL_2-24 branch to the development trunk

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2008/07/15 - nielsnes: src/storage/store.mx,1.11.2.5
we need to drop declared tables when we leave the scope.
THis fixes bug mdb_starts_with_sql_debug_64.SF-1999354.sql.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~


Index: store.mx
===================================================================
RCS file: /cvsroot/monetdb/sql/src/storage/store.mx,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- store.mx    6 Jul 2008 11:19:48 -0000       1.14
+++ store.mx    17 Jul 2008 13:29:37 -0000      1.15
@@ -932,7 +932,7 @@
        for (n = tr->schemas.set->h; n; n = n->next) {
                sql_schema *s = n->data;
 
-               if (strcmp(s->base.name, "%dt%") == 0) 
+               if (strcmp(s->base.name, dt_schema) == 0) 
                        continue;
                table_funcs.table_insert(tr, sysschema, &s->base.id, 
s->base.name, &s->auth_id, &s->owner);
                for (m = s->tables.set->h; m; m = m->next) {
@@ -1337,7 +1337,7 @@
                }
        }
 
-       s = bootstrap_create_schema(tr, "%dt%", ROLE_SYSADMIN, USER_MONETDB);
+       s = bootstrap_create_schema(tr, dt_schema, ROLE_SYSADMIN, USER_MONETDB);
 
        if (first) {
                insert_types(tr, types);


-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Monetdb-sql-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-sql-checkins

Reply via email to