Changeset: 5c392c566e55 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=5c392c566e55
Modified Files:
        clients/mapiclient/dotmonetdb.c
Branch: Dec2016
Log Message:

Remove unused jaql option from the dotmonetdb parser

Writing the line:
language=jaql
in the dotmonetdb file is accepted by its parser but results in the exception:

MALException:setScenario:Scenario not initialized 'jaql'


diffs (13 lines):

diff --git a/clients/mapiclient/dotmonetdb.c b/clients/mapiclient/dotmonetdb.c
--- a/clients/mapiclient/dotmonetdb.c
+++ b/clients/mapiclient/dotmonetdb.c
@@ -97,8 +97,7 @@ parse_dotmonetdb(char **user, char **pas
                        } else if (strcmp(buf, "language") == 0) {
                                /* make sure we don't set garbage */
                                if (strcmp(q, "sql") != 0 &&
-                                   strcmp(q, "mal") != 0 &&
-                                   strcmp(q, "jaql") != 0) {
+                                   strcmp(q, "mal") != 0) {
                                        fprintf(stderr, "%s:%d: unsupported "
                                                "language: %s\n",
                                                cfile, line, q);
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to