Changeset: 752b595151da for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=752b595151da
Modified Files:
monetdb5/mal/mal_debugger.c
Branch: generator
Log Message:
Recognize the X_ names for temporaries
diffs (15 lines):
diff --git a/monetdb5/mal/mal_debugger.c b/monetdb5/mal/mal_debugger.c
--- a/monetdb5/mal/mal_debugger.c
+++ b/monetdb5/mal/mal_debugger.c
@@ -820,6 +820,11 @@ retryRead:
/* search the symbol */
i = findVariable(mb, b);
if (i < 0) {
+ // deal with temporary
+ if( *b == 'X' ) b++;
+ i = findVariable(mb, b);
+ }
+ if (i < 0) {
i = BBPindex(b);
if (i != 0) {
printBATelm(out, i, size, first);
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list