Changeset: c53a46899530 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=c53a46899530
Modified Files:
clients/src/mapiclient/mclient.c
Branch: default
Log Message:
hack: allow brute force setting of language using undocumented -T option
diffs (31 lines):
diff -r 5c6dd54306c8 -r c53a46899530 clients/src/mapiclient/mclient.c
--- a/clients/src/mapiclient/mclient.c Thu Dec 23 18:19:11 2010 +0100
+++ b/clients/src/mapiclient/mclient.c Thu Dec 23 18:19:18 2010 +0100
@@ -2534,6 +2534,7 @@
{"input", 1, 0, 'I'},
{"interactive", 0, 0, 'i'},
{"language", 1, 0, 'l'},
+ {"taal", 1, 0, 'T'},
{"log", 1, 0, 'L'},
{"null", 1, 0, 'n'},
#ifdef HAVE_POPEN
@@ -2670,7 +2671,7 @@
#ifdef HAVE_ICONV
"E:"
#endif
- "f:Ggh:I:iL:l:n:"
+ "f:Ggh:I:iL:T:l:n:"
#ifdef HAVE_POPEN
"|:"
#endif
@@ -2729,6 +2730,10 @@
exit(-1);
}
break;
+ case 'T':
+ /* mere hack */
+ mode = SQL;
+ language = optarg;
case 'n':
nullstring = optarg;
break;
_______________________________________________
Checkin-list mailing list
[email protected]
http://mail.monetdb.org/mailman/listinfo/checkin-list