Changeset: c8d4673054ce for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=c8d4673054ce
Modified Files:
        sql/backends/monet5/sql.c
Branch: Oct2014
Log Message:

fixed crash in select * from var();


diffs (12 lines):

diff --git a/sql/backends/monet5/sql.c b/sql/backends/monet5/sql.c
--- a/sql/backends/monet5/sql.c
+++ b/sql/backends/monet5/sql.c
@@ -1375,7 +1375,7 @@ sql_variables(Client cntxt, MalBlkPtr mb
        mvc *m = NULL;
        BAT *vars;
        str msg;
-       int *res = getArgReference_int(stk, pci, 0);
+       bat *res = getArgReference_bat(stk, pci, 0);
 
        if ((msg = getSQLContext(cntxt, mb, &m, NULL)) != NULL)
                return msg;
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to