Changeset: b02a11cf89d5 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/b02a11cf89d5
Modified Files:
monetdb5/modules/kernel/batstr.c
Branch: txtsim-imp
Log Message:
Missed proper naming of UTF-8. Windows does not recognize UTF8(without hyphen).
diffs (12 lines):
diff --git a/monetdb5/modules/kernel/batstr.c b/monetdb5/modules/kernel/batstr.c
--- a/monetdb5/modules/kernel/batstr.c
+++ b/monetdb5/modules/kernel/batstr.c
@@ -5068,7 +5068,7 @@ BATSTRasciify(bat *ret, bat *bid)
size_t prev_out_len = 0, in_len = 0, out_len = 0;
str s = NULL, out = NULL, in = NULL, msg = MAL_SUCCEED;
iconv_t cd;
- const str f = "UTF8", t = "ASCII//TRANSLIT";
+ const str f = "UTF-8", t = "ASCII//TRANSLIT";
/* man iconv; /TRANSLIT */
if ((cd = iconv_open(t, f)) == (iconv_t)(-1))
_______________________________________________
checkin-list mailing list -- [email protected]
To unsubscribe send an email to [email protected]