Changeset: a4ddc8066755 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=a4ddc8066755
Modified Files:
        clients/mapilib/mapi.c
Branch: oltp
Log Message:

Don't throw away debugging lines too early


diffs (12 lines):

diff --git a/clients/mapilib/mapi.c b/clients/mapilib/mapi.c
--- a/clients/mapilib/mapi.c
+++ b/clients/mapilib/mapi.c
@@ -3735,7 +3735,7 @@ add_cache(struct MapiResultSet *result, 
        result->cache.line[result->cache.writer].rows = line;
        result->cache.line[result->cache.writer].tuplerev = 
result->cache.tuplecount;
        result->cache.line[result->cache.writer + 1].tuplerev = 
result->cache.tuplecount + 1;
-       if (*line == '[' || *line == '=') {
+       if (*line == '[' || *line == '=' || *line == '#') {
                result->cache.line[result->cache.tuplecount++].tupleindex = 
result->cache.writer;
                if (result->row_count < result->cache.first + 
result->cache.tuplecount)
                        result->row_count = result->cache.first + 
result->cache.tuplecount;
_______________________________________________
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to