Changeset: 838d7af08408 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=838d7af08408
Modified Files:
        clients/mapiclient/msqldump.c
Branch: Nov2019
Log Message:

Set cache limit for dump to infinite (aka -1).
The limit should be less than infinite if there are multiple
concurrent queries on the connection, but that is not the case in
msqldump.
This should fix bug 6777.


diffs (12 lines):

diff --git a/clients/mapiclient/msqldump.c b/clients/mapiclient/msqldump.c
--- a/clients/mapiclient/msqldump.c
+++ b/clients/mapiclient/msqldump.c
@@ -186,7 +186,7 @@ main(int argc, char **argv)
                        fprintf(stderr, "%s", motd);
        }
        mapi_trace(mid, trace);
-       mapi_cache_limit(mid, 10000);
+       mapi_cache_limit(mid, -1);
 
        out = file_wastream(stdout, "stdout");
        if (out == NULL) {
_______________________________________________
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to