Changeset: 42a727be4365 for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=42a727be4365 Modified Files: Branch: default Log Message:
Merge with Oct2010 branch. diffs (39 lines): diff -r 52e38de31459 -r 42a727be4365 clients/ChangeLog.Oct2010 --- a/clients/ChangeLog.Oct2010 Tue Sep 14 17:04:42 2010 +0200 +++ b/clients/ChangeLog.Oct2010 Tue Sep 14 17:25:15 2010 +0200 @@ -2,6 +2,10 @@ # This file is updated with Maddlog * Tue Sep 14 2010 Sjoerd Mullender <sjo...@acm.org> +- The \d and \D commands now require a space if they are followed by a + table name. This is to accomodate future expansion where \d and \D + could be immediately followed by another letter to indicate the type + of object of interest. - Implemented dumping of "external" functions. This fixes bug 2546. * Thu Aug 26 2010 Fabian Groffen <fab...@cwi.nl> diff -r 52e38de31459 -r 42a727be4365 clients/src/mapiclient/mclient.c --- a/clients/src/mapiclient/mclient.c Tue Sep 14 17:04:42 2010 +0200 +++ b/clients/src/mapiclient/mclient.c Tue Sep 14 17:25:15 2010 +0200 @@ -1922,6 +1922,10 @@ break; while (isspace((int) line[length - 1])) line[--length] = 0; + if (line[2] && !isspace(line[2])) { + fprintf(stderr, "space required after \\d\n"); + continue; + } for (line += 2; *line && isspace((int) *line); line++) ; if (*line) { @@ -1971,6 +1975,10 @@ break; while (isspace((int) line[length - 1])) line[--length] = 0; + if (line[2] && !isspace(line[2])) { + fprintf(stderr, "space required after \\D\n"); + continue; + } for (line += 2; *line && isspace((int) *line); line++) ; #ifdef HAVE_POPEN _______________________________________________ Checkin-list mailing list Checkin-list@monetdb.org http://mail.monetdb.org/mailman/listinfo/checkin-list