Changeset: f4029d04432d for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=f4029d04432d Modified Files: monetdb5/modules/mal/mal_init.mx Branch: sciql Log Message:
move loading of the array module to a correct place. The array module uses the mtime module, so it should not be loaded before mtime. The array module doesn't belong to the section of "The kernel stuff to make it work", instead, it belongs to the section with "MAL related extensions" diffs (19 lines): diff --git a/monetdb5/modules/mal/mal_init.mx b/monetdb5/modules/mal/mal_init.mx --- a/monetdb5/modules/mal/mal_init.mx +++ b/monetdb5/modules/mal/mal_init.mx @@ -56,7 +56,6 @@ include status; include group; include aggr; -include array; include pqueue; include mkey; @@ -100,6 +99,7 @@ include recycle; include remote; include trader; # experimental +include array; # extremely experimental include mat; # experimental include histogram; # experimental _______________________________________________ Checkin-list mailing list [email protected] http://mail.monetdb.org/mailman/listinfo/checkin-list
