Changeset: a41422a7c594 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=a41422a7c594
Modified Files:
        common/options/monet_options.mx
Branch: default
Log Message:

Default pipelines are hardwired
Optimizer pipelines are defined in the opt_pipes file.
There also the default and minimal pipes are defined.
Their setting in the monet_options list is legacy.


diffs (27 lines):

diff --git a/common/options/monet_options.mx b/common/options/monet_options.mx
--- a/common/options/monet_options.mx
+++ b/common/options/monet_options.mx
@@ -291,7 +291,7 @@
        if (Set == NULL)
                return 0;
 
-#define N_OPTIONS      14      /*MUST MATCH # OPTIONS BELOW */
+#define N_OPTIONS      12      /*MUST MATCH # OPTIONS BELOW */
        set = malloc(sizeof(opt) * N_OPTIONS);
        if (set == NULL)
                return 0;
@@ -339,14 +339,6 @@
        set[i].value = strdup("false");
        i++;
        set[i].kind = opt_builtin;
-       set[i].name = strdup("default_pipe");
-       set[i].value = 
strdup("inline,remap,evaluate,costModel,coercions,emptySet,aliases,mitosis,mergetable,deadcode,commonTerms,joinPath,reorder,deadcode,reduce,dataflow,history,multiplex,garbageCollector");
-       i++;
-       set[i].kind = opt_builtin;
-       set[i].name = strdup("minimal_pipe");
-       set[i].value = 
strdup("inline,remap,deadcode,multiplex,garbageCollector");
-       i++;
-       set[i].kind = opt_builtin;
        set[i].name = strdup("sql_optimizer");
        set[i].value = strdup("default_pipe");
        i++;
_______________________________________________
Checkin-list mailing list
[email protected]
http://mail.monetdb.org/mailman/listinfo/checkin-list

Reply via email to