Changeset: f536e8dc92ab for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=f536e8dc92ab
Modified Files:
        monetdb5/optimizer/opt_wrapper.c
Branch: Feb2013
Log Message:

OPTwrapper: for convenience: order includes and optimizers alphabetically


diffs (67 lines):

diff --git a/monetdb5/optimizer/opt_wrapper.c b/monetdb5/optimizer/opt_wrapper.c
--- a/monetdb5/optimizer/opt_wrapper.c
+++ b/monetdb5/optimizer/opt_wrapper.c
@@ -39,10 +39,10 @@ All Rights Reserved.
 */
 #include "opt_accumulators.h"
 #include "opt_aliases.h"
+#include "opt_centipede.h"
+#include "opt_cluster.h"
 #include "opt_cluster.h"
 #include "opt_coercion.h"
-#include "opt_centipede.h"
-#include "opt_cluster.h"
 #include "opt_commonTerms.h"
 #include "opt_compression.h"
 #include "opt_costModel.h"
@@ -62,10 +62,11 @@ All Rights Reserved.
 #include "opt_mergetable.h"
 #include "opt_mitosis.h"
 #include "opt_multiplex.h"
+#include "opt_octopus.h"
 #include "opt_origin.h"
-#include "opt_octopus.h"
 #include "opt_prejoin.h"
 #include "opt_pushranges.h"
+#include "opt_pushselect.h"
 #include "opt_qep.h"
 #include "opt_recycler.h"
 #include "opt_reduce.h"
@@ -74,7 +75,6 @@ All Rights Reserved.
 #include "opt_reorder.h"
 #include "opt_statistics.h"
 #include "opt_strengthReduction.h"
-#include "opt_pushselect.h"
 
 struct{
        str nme;
@@ -91,11 +91,12 @@ struct{
        {"dataflow", &OPTdataflowImplementation},
        {"deadcode", &OPTdeadcodeImplementation},
        {"dictionary", &OPTdictionaryImplementation},
+       {"dumpQEP", &OPTdumpQEPImplementation},
        {"emptySet", &OPTemptySetImplementation},
        {"evaluate", &OPTevaluateImplementation},
        {"factorize", &OPTfactorizeImplementation},
+       {"garbageCollector", &OPTgarbageCollectorImplementation},
        {"groups", &OPTgroupsImplementation},
-       {"garbageCollector", &OPTgarbageCollectorImplementation},
        {"history", &OPThistoryImplementation},
        {"inline", &OPTinlineImplementation},
        {"joinPath", &OPTjoinPathImplementation},
@@ -108,14 +109,13 @@ struct{
        {"origin", &OPToriginImplementation},
        {"prejoin", &OPTprejoinImplementation},
        {"pushranges", &OPTpushrangesImplementation},
-       {"dumpQEP", &OPTdumpQEPImplementation},
+       {"pushselect", &OPTpushselectImplementation},
        {"recycle", &OPTrecyclerImplementation},
        {"reduce", &OPTreduceImplementation},
        {"remap", &OPTremapImplementation},
        {"remoteQueries", &OPTremoteQueriesImplementation},
        {"reorder", &OPTreorderImplementation},
        {"strengthReduction", &OPTstrengthReductionImplementation},
-       {"pushselect", &OPTpushselectImplementation},
        {0,0}
 };
 opt_export str OPTwrapper(Client cntxt, MalBlkPtr mb, MalStkPtr stk, InstrPtr 
p);
_______________________________________________
checkin-list mailing list
[email protected]
http://mail.monetdb.org/mailman/listinfo/checkin-list

Reply via email to