Hi,

    I would like to clone a repository from  MonetDB-11.9.7.  What would be the branch or rev number for:

        hg clone http://dev.monetdb.org/hg/MonetDB -b

    Thanks in advance.

Chi



From: Chi-Young Ku <chi@querymetrica.com>
To: "developers-list@monetdb.org" <developers-list@monetdb.org>
Cc: Chi- Young Ku <chi@querymetrica.com>
Sent: Wednesday, October 17, 2012 5:47 PM
Subject: Generating gprof report

Hi,

    I used the "--enable_profile" option to configure my MonetDB and ran "make clean; make; make install".

    I, then, started my MonetDB instance and ran the following query:

        select count(*) from lineitem where l_partkey > 9000;

    Lastly, I quit from the "mclient" session and issued "monetdbd stop ...". 

    I observed that there are several gmon.out files in different directories in my top build directory.

    Therefore, I issued the following gprof command:

        gprof /usr/local/bin/mserver5 ./sql/backends/monet5/gmon.out ./gdk/gmon.out  ./monetdb5/extras/mal_optimizer_template/gmon.out ./monetdb5/modules/atoms/gmon.out
            ./monetdb5/modules/kernel/gmon.out ./monetdb5/modules/mal/gmon.out ./monetdb5/scheduler/gmon.out ./monetdb5/optimizer/gmon.out ./monetdb5/mal/gmon.out 

    However, the output of the above command did not show any calling sequence containing the execution of MAL instructions.

    Did I miss anything?

    Thanks in advance.

Chi