This is a discussion on Patch for collation using ICU within the pgsql Hackers forums, part of the PostgreSQL category; --> Bruce Momjian <pgman@candle.pha.pa.us> writes: > Is this patch ready for application? Not until ICU is released under a BSD ...
| |||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| Bruce Momjian <pgman@candle.pha.pa.us> writes: > Is this patch ready for application? Not until ICU is released under a BSD license ... regards, tom lane ---------------------------(end of broadcast)--------------------------- TIP 5: Have you checked our extensive FAQ? http://www.postgresql.org/docs/faq |
| |||
| Tom Lane wrote: > Bruce Momjian <pgman@candle.pha.pa.us> writes: > > Is this patch ready for application? > > Not until ICU is released under a BSD license ... Well, readline isn't BSD either, but we use it. It is any different? -- Bruce Momjian | http://candle.pha.pa.us pgman@candle.pha.pa.us | (610) 359-1001 + If your life is a hard drive, | 13 Roberts Road + Christ can be your backup. | Newtown Square, Pennsylvania 19073 ---------------------------(end of broadcast)--------------------------- TIP 9: the planner will ignore your desire to choose an index scan if your joining column's datatypes do not match |
| |||
| On 2005-05-07, Bruce Momjian <pgman@candle.pha.pa.us> wrote: > Tom Lane wrote: >> Bruce Momjian <pgman@candle.pha.pa.us> writes: >> > Is this patch ready for application? >> >> Not until ICU is released under a BSD license ... > > Well, readline isn't BSD either, but we use it. It is any different? ICU appears to be under the X license, which is no more restrictive than BSD-with-no-advertising-clause. -- Andrew, Supernews http://www.supernews.com - individual and corporate NNTP services |
| |||
| Bruce Momjian <pgman@candle.pha.pa.us> writes: > Tom Lane wrote: >> Not until ICU is released under a BSD license ... > Well, readline isn't BSD either, but we use it. It is any different? Did you read the license? Some of the more troubling bits: : It is the understanding of INTERNATIONAL BUSINESS MACHINES CORPORATION : that the purpose for which its publications are being reproduced is : accurate and true as stated in your attached request. (er, which attached request would that be?) : Permission to quote from or reprint IBM publications is limited to the : purpose and quantities originally requested and must not be construed as : a blanket license to use the material for other purposes or to reprint : other IBM copyrighted material. : IBM reserves the right to withdraw permission to reproduce copyrighted : material whenever, in its discretion, it feels that the privilege of : reproducing its material is being used in a way detrimental to its : interest or the above instructions are not being followed properly to : protect its copyright. : IBM may have patents or pending patent applications covering subject : matter in this document. The furnishing of this document does not give : you any license to these patents. You can send license inquiries, in : writing, to: : For license inquiries regarding double-byte (DBCS) information, contact : the IBM Intellectual Property Department in your country or send : inquiries, in writing, to: regards, tom lane ---------------------------(end of broadcast)--------------------------- TIP 2: you can get off all lists at once with the unregister command (send "unregister YourEmailAddressHere" to majordomo@postgresql.org) |
| |||
| --On fredag, maj 06, 2005 23.31.20 -0400 Tom Lane <tgl@sss.pgh.pa.us> wrote: > Bruce Momjian <pgman@candle.pha.pa.us> writes: >> Is this patch ready for application? > > Not until ICU is released under a BSD license ... It's not GPL anyway. Seems pretty much like the BSD license, at least more BSD-ish than GPL-ish. <http://dev.icu-project.org/cgi-bin/viewcvs.cgi/*checkout*/icu/license.html> /Palle ---------------------------(end of broadcast)--------------------------- TIP 3: if posting/reading through Usenet, please send an appropriate subscribe-nomail command to majordomo@postgresql.org so that your message can get through to the mailing list cleanly |
| |||
| --On fredag, maj 06, 2005 22.57.59 -0400 Bruce Momjian <pgman@candle.pha.pa.us> wrote: > > Is this patch ready for application? > > http://people.freebsd.org/~girgen/po...u-2005-05-06.d > iff.gz > > The web site is: > > http://people.freebsd.org/~girgen/po...cu/readme.html I don't think so, not quite. I have not had any positive reports from linux users, this is only tested in a FreeBSD environment. I'd say it needs some more testing. Also, apparently, ICU is installed by default in many linux distributions, and usually it is version 2.8. Some linux users have asked me if there are plans for a patch that works with ICU 2.8. That's probably a good idea. IBM and the ICU folks seem to consider 3.2 to be the stable version, older versions are hard to find on their sites, but most linux distributers seem to consider it too bleeding edge, even gentoo. I don't know why they don't agree. > I do have a few questions: > > Why don't you use the lc_ctype_is_c() part of this test? > > if (pg_database_encoding_max_length() > 1 && !lc_ctype_is_c()) Um, well, I didn't think about that. case? c_C.UTF-8? encoding, indeed. Then the strings will be handled like byte-wide chars. Yeah, it's a bug. I'll fix it! Thanks. > Why is so much code added, for example, in lower()? The existing > multibyte code is much smaller, and lots of code is added in other > places too. ICU uses UTF-16 internally, so all strings must be converted from the database encoding to UTF-16. Since that means the strings need to be copied, I took the same approach as in varlena.c:varstr_cmp(), where small strings use the heap and only larger strings use a palloc. Comments in varstr_cmp about performance made me use that approach. Also, in the latest patch, I also added checks and logging for *every* status returned from ICU. I hope this will help debugging on debian, where previous version didn't work. That excessive status checking is hardly be necessary once the stuff is better tested. I think the string copying and heap/palloc choices stands for most of the code bloat, together with the excessive status checking and logging. > Why do you need to add a mapping of encoding names from iana to our > names? This was already answered by John Hansen... There's an old thread here about the choice of the name "UNICODE" to describe an encoding, which it doesn't. There's half a dozen unicode based encodings... UTF-8 is used by postgresql, that would have been a better name... Similarly for most other encodings, really. ICU expect a setlocale(3) string (i.e. IANA). PostgreSQL can't provide it, so a mapping table is required. I use this patch in production on one FreeBSD 4.10 server at the moment. With the latest version, I've had no problems. Logging is swithed on for now, and it shows no signs of ICU complaining. I'd like more reports on Linux, though. /Palle > > ------------------------------------------------------------------------- > -- > > Palle Girgensohn wrote: >> Hi! >> >> I've put together a patch for using IBM's ICU package for collation. >> >> If your OS does not have full support for collation ur >> uppercase/lowercase in multibyte locales, this might be useful. If you >> are using a multibyte character encoding in your database and want >> collation, i.e. order by, and also lower(), upper() and initcap() to >> work properly, this patch will do just that. >> >> This patch is needed for FreeBSD, since this OS has no support for >> collation of for example unicode locales (that is, wcscoll(3) does not >> do what you expect if you set LC_ALL=sv_SE.UTF-8, for example). AFAIK >> the patch is *not* necessary for Linux, although IBM claims ICU >> collation to be about twice as fast as glibc for simple western locales. >> >> It adds a configure switch, `--with-icu', which will set up the code to >> use ICU instead of wchar_t and wcscoll. >> >> This has been tested only on FreeBSD-4.11 & FreeBSD-5-stable, where it >> seems to run well. I've not had the time to do any comparative >> performance tests yet, but it seems it is at least not slower than >> using LATIN1 with sv_SE.ISO8859-1 locale, perhaps even faster. >> >> I'd be delighted if some more experienced postgresql hackers would >> review this stuff. The patch is pretty compact, so it's fast reading >> I'm planning to add this patch as an option (tagged "experimental") to >> FreeBSD's postgresql port. Any ideas about whether this is a good idea >> or not? >> >> Any thoughts or ideas are welcome! >> >> Cheers, >> Palle >> >> Patch at: >> <http://people.freebsd.org/~girgen/po...icu-2005-03-14. >> diff> >> >> ICU at sourceforge: <http://icu.sf.net/> >> >> >> ---------------------------(end of broadcast)--------------------------- >> TIP 7: don't forget to increase your free space map settings >> > > -- > Bruce Momjian | http://candle.pha.pa.us > pgman@candle.pha.pa.us | (610) 359-1001 > + If your life is a hard drive, | 13 Roberts Road > + Christ can be your backup. | Newtown Square, Pennsylvania > 19073 ---------------------------(end of broadcast)--------------------------- TIP 7: don't forget to increase your free space map settings |
| |||
| Palle Girgensohn wrote: > > > > Is this patch ready for application? > > I don't think so, not quite. I have not had any positive reports from linux > users, this is only tested in a FreeBSD environment. I'd say it needs some > more testing. OK. > Also, apparently, ICU is installed by default in many linux distributions, > and usually it is version 2.8. Some linux users have asked me if there are > plans for a patch that works with ICU 2.8. That's probably a good idea. IBM > and the ICU folks seem to consider 3.2 to be the stable version, older > versions are hard to find on their sites, but most linux distributers seem > to consider it too bleeding edge, even gentoo. I don't know why they don't > agree. Good point. Why would linux folks need ICU? Doesn't their OS support encodings natively? I am particularly excited about this for OSs that don't have such encodings, like UTF8 support for Win32. Because ICU will not be used unless enabled by configure, it seems we are fine with only supporting the newest version. Do Linux users need to use ICU for any reason? > > I do have a few questions: > > > > Why don't you use the lc_ctype_is_c() part of this test? > > > > if (pg_database_encoding_max_length() > 1 && !lc_ctype_is_c()) > > Um, well, I didn't think about that. > case? c_C.UTF-8? > encoding, indeed. Then the strings will be handled like byte-wide chars. > Yeah, it's a bug. I'll fix it! Thanks. The additional test is more of an optmization, and it fixes a problem with some OSs that have processing problems with UTF8 when the locale is supposed to be turned off, like in "C". I realize ICU might be fine with it but the optimization still is an issue. > > Why is so much code added, for example, in lower()? The existing > > multibyte code is much smaller, and lots of code is added in other > > places too. > > ICU uses UTF-16 internally, so all strings must be converted from the > database encoding to UTF-16. Since that means the strings need to be > copied, I took the same approach as in varlena.c:varstr_cmp(), where small > strings use the heap and only larger strings use a palloc. Comments in > varstr_cmp about performance made me use that approach. Oh, interesting. I think you need to create new functions that factor out that common code so the patch is smaller and easier to maintain. > Also, in the latest patch, I also added checks and logging for *every* > status returned from ICU. I hope this will help debugging on debian, where > previous version didn't work. That excessive status checking is hardly be > necessary once the stuff is better tested. > > I think the string copying and heap/palloc choices stands for most of the > code bloat, together with the excessive status checking and logging. OK, move that into some common functions and I think it will be better. > > Why do you need to add a mapping of encoding names from iana to our > > names? > > This was already answered by John Hansen... There's an old thread here > about the choice of the name "UNICODE" to describe an encoding, which it > doesn't. There's half a dozen unicode based encodings... UTF-8 is used by > postgresql, that would have been a better name... Similarly for most other > encodings, really. ICU expect a setlocale(3) string (i.e. IANA). PostgreSQL > can't provide it, so a mapping table is required. We have depricated UNICODE in 8.1 in favor of UTF8 (no dash). Does that help? > I use this patch in production on one FreeBSD 4.10 server at the moment. > With the latest version, I've had no problems. Logging is swithed on for > now, and it shows no signs of ICU complaining. I'd like more reports on > Linux, though. OK, I certainly would like this all done for 8.1 which should have feature freeze on July 1. -- Bruce Momjian | http://candle.pha.pa.us pgman@candle.pha.pa.us | (610) 359-1001 + If your life is a hard drive, | 13 Roberts Road + Christ can be your backup. | Newtown Square, Pennsylvania 19073 ---------------------------(end of broadcast)--------------------------- TIP 4: Don't 'kill -9' the postmaster |
| |||
| --On lördag, maj 07, 2005 08.37.05 -0400 Bruce Momjian <pgman@candle.pha.pa.us> wrote: > Palle Girgensohn wrote: >> > >> > Is this patch ready for application? >> >> I don't think so, not quite. I have not had any positive reports from >> linux users, this is only tested in a FreeBSD environment. I'd say it >> needs some more testing. > > OK. John Hansen just reported that it does work on linux. fine! >> Also, apparently, ICU is installed by default in many linux >> distributions, and usually it is version 2.8. Some linux users have >> asked me if there are plans for a patch that works with ICU 2.8. That's >> probably a good idea. IBM and the ICU folks seem to consider 3.2 to be >> the stable version, older versions are hard to find on their sites, but >> most linux distributers seem to consider it too bleeding edge, even >> gentoo. I don't know why they don't agree. > > Good point. Why would linux folks need ICU? Doesn't their OS support > encodings natively? I am particularly excited about this for OSs that > don't have such encodings, like UTF8 support for Win32. > > Because ICU will not be used unless enabled by configure, it seems we > are fine with only supporting the newest version. Do Linux users need > to use ICU for any reason? There are corner cases where it is impossible to upper/lowercase one character at the time. for example: -- without ICU select upper('Eßer'); upper ------- EßER (1 row) -- with ICU select upper('Eßer'); upper ------- ESSER (1 rad) This is because in the standard postgres implementation, upper/lower is done one character at the time. A proper upper/lower cannot do it that way. Other known example is in Turkish, where an Ì (?) should look different whether it is an initial letter or not. This fails in standard postgresql for all platforms. >> > I do have a few questions: >> > >> > Why don't you use the lc_ctype_is_c() part of this test? >> > >> > if (pg_database_encoding_max_length() > 1 && !lc_ctype_is_c()) >> >> Um, well, I didn't think about that. >> this case? c_C.UTF-8? >> wide encoding, indeed. Then the strings will be handled like byte-wide >> chars. Yeah, it's a bug. I'll fix it! Thanks. > > The additional test is more of an optmization, and it fixes a problem > with some OSs that have processing problems with UTF8 when the locale is > supposed to be turned off, like in "C". I realize ICU might be fine > with it but the optimization still is an issue. Well, the results are quite different, depending on whether ICU is used or not. See separate mail. >> > Why is so much code added, for example, in lower()? The existing >> > multibyte code is much smaller, and lots of code is added in other >> > places too. >> >> ICU uses UTF-16 internally, so all strings must be converted from the >> database encoding to UTF-16. Since that means the strings need to be >> copied, I took the same approach as in varlena.c:varstr_cmp(), where >> small strings use the heap and only larger strings use a palloc. >> Comments in varstr_cmp about performance made me use that approach. > > Oh, interesting. I think you need to create new functions that > factor out that common code so the patch is smaller and easier to > maintain. Hmm, yes, perhaps it can be refactored a bit. It has ocurred to me... >> Also, in the latest patch, I also added checks and logging for *every* >> status returned from ICU. I hope this will help debugging on debian, >> where previous version didn't work. That excessive status checking is >> hardly be necessary once the stuff is better tested. >> >> I think the string copying and heap/palloc choices stands for most of >> the code bloat, together with the excessive status checking and logging. > > OK, move that into some common functions and I think it will be better. Best way for upper/lower/initcap is probably to use a function pointer... uhh... >> > Why do you need to add a mapping of encoding names from iana to our >> > names? >> >> This was already answered by John Hansen... There's an old thread here >> about the choice of the name "UNICODE" to describe an encoding, which it >> doesn't. There's half a dozen unicode based encodings... UTF-8 is used >> by postgresql, that would have been a better name... Similarly for most >> other encodings, really. ICU expect a setlocale(3) string (i.e. IANA). >> PostgreSQL can't provide it, so a mapping table is required. > > We have depricated UNICODE in 8.1 in favor of UTF8 (no dash). Does that > help? I'm aware of that. It might help for unicode, but there are a bunch of other encodings. IANA has decided that utf-8 has *no* aliases, hence only utf-8 (with dash, but case insensitve) is accepted. Perhaps ICU is fogiving, I don't remember/know, but I think we need the mappings, unfortunately. >> I use this patch in production on one FreeBSD 4.10 server at the moment. >> With the latest version, I've had no problems. Logging is swithed on for >> now, and it shows no signs of ICU complaining. I'd like more reports on >> Linux, though. > > OK, I certainly would like this all done for 8.1 which should have > feature freeze on July 1. That shouldn't be a problem. /Palle > > -- > Bruce Momjian | http://candle.pha.pa.us > pgman@candle.pha.pa.us | (610) 359-1001 > + If your life is a hard drive, | 13 Roberts Road > + Christ can be your backup. | Newtown Square, Pennsylvania > 19073 ---------------------------(end of broadcast)--------------------------- TIP 4: Don't 'kill -9' the postmaster |
| |||
| Palle Girgensohn wrote: > >> Also, apparently, ICU is installed by default in many linux > >> distributions, and usually it is version 2.8. Some linux users have > >> asked me if there are plans for a patch that works with ICU 2.8. That's > >> probably a good idea. IBM and the ICU folks seem to consider 3.2 to be > >> the stable version, older versions are hard to find on their sites, but > >> most linux distributers seem to consider it too bleeding edge, even > >> gentoo. I don't know why they don't agree. > > > > Good point. Why would linux folks need ICU? Doesn't their OS support > > encodings natively? I am particularly excited about this for OSs that > > don't have such encodings, like UTF8 support for Win32. > > > > Because ICU will not be used unless enabled by configure, it seems we > > are fine with only supporting the newest version. Do Linux users need > > to use ICU for any reason? > > > There are corner cases where it is impossible to upper/lowercase one > character at the time. for example: > > -- without ICU > select upper('E?er'); > upper > ------- > E?ER > (1 row) > > -- with ICU > select upper('E?er'); > upper > ------- > ESSER > (1 rad) > > This is because in the standard postgres implementation, upper/lower is > done one character at the time. A proper upper/lower cannot do it that way. > Other known example is in Turkish, where an ? (?) should look different > whether it is an initial letter or not. This fails in standard postgresql > for all platforms. Uh, where do you see that? Our code has: workspace = texttowcs(string); for (i = 0; workspace[i] != 0; i++) workspace[i] = towupper(workspace[i]); result = wcstotext(workspace, i); > >> Also, in the latest patch, I also added checks and logging for *every* > >> status returned from ICU. I hope this will help debugging on debian, > >> where previous version didn't work. That excessive status checking is > >> hardly be necessary once the stuff is better tested. > >> > >> I think the string copying and heap/palloc choices stands for most of > >> the code bloat, together with the excessive status checking and logging. > > > > OK, move that into some common functions and I think it will be better. > > Best way for upper/lower/initcap is probably to use a function pointer... > uhh... Uh, I don't think so. Just send pointers to the the function and let the function allocate the memory, and another function to free them, or something like that. I can probably do it if you want. > >> > Why do you need to add a mapping of encoding names from iana to our > >> > names? > >> > >> This was already answered by John Hansen... There's an old thread here > >> about the choice of the name "UNICODE" to describe an encoding, which it > >> doesn't. There's half a dozen unicode based encodings... UTF-8 is used > >> by postgresql, that would have been a better name... Similarly for most > >> other encodings, really. ICU expect a setlocale(3) string (i.e. IANA). > >> PostgreSQL can't provide it, so a mapping table is required. > > > > We have depricated UNICODE in 8.1 in favor of UTF8 (no dash). Does that > > help? > > I'm aware of that. It might help for unicode, but there are a bunch of > other encodings. IANA has decided that utf-8 has *no* aliases, hence only > utf-8 (with dash, but case insensitve) is accepted. Perhaps ICU is > fogiving, I don't remember/know, but I think we need the mappings, > unfortunately. OK. I guess I am just confused why the native implementations are OK. -- Bruce Momjian | http://candle.pha.pa.us pgman@candle.pha.pa.us | (610) 359-1001 + If your life is a hard drive, | 13 Roberts Road + Christ can be your backup. | Newtown Square, Pennsylvania 19073 ---------------------------(end of broadcast)--------------------------- TIP 8: explain analyze is your friend |
| ||||
| --On lördag, maj 07, 2005 09.52.59 -0400 Bruce Momjian <pgman@candle.pha.pa.us> wrote: > Palle Girgensohn wrote: >> >> Also, apparently, ICU is installed by default in many linux >> >> distributions, and usually it is version 2.8. Some linux users have >> >> asked me if there are plans for a patch that works with ICU 2.8. >> >> That's probably a good idea. IBM and the ICU folks seem to consider >> >> 3.2 to be the stable version, older versions are hard to find on >> >> their sites, but most linux distributers seem to consider it too >> >> bleeding edge, even gentoo. I don't know why they don't agree. >> > >> > Good point. Why would linux folks need ICU? Doesn't their OS support >> > encodings natively? I am particularly excited about this for OSs that >> > don't have such encodings, like UTF8 support for Win32. >> > >> > Because ICU will not be used unless enabled by configure, it seems we >> > are fine with only supporting the newest version. Do Linux users need >> > to use ICU for any reason? >> >> >> There are corner cases where it is impossible to upper/lowercase one >> character at the time. for example: >> >> -- without ICU >> select upper('E?er'); >> upper >> ------- >> E?ER >> (1 row) >> >> -- with ICU >> select upper('E?er'); >> upper >> ------- >> ESSER >> (1 rad) >> >> This is because in the standard postgres implementation, upper/lower is >> done one character at the time. A proper upper/lower cannot do it that >> way. Other known example is in Turkish, where an ? (?) should look >> different whether it is an initial letter or not. This fails in >> standard postgresql for all platforms. > > Uh, where do you see that? Our code has: > > workspace = texttowcs(string); > > for (i = 0; workspace[i] != 0; i++) > workspace[i] = towupper(workspace[i]); as you see, the loop runs towupper for one character at the time. I cannot consider whether the letter is the initial, as required in Turkish, and it cannot really convert one character into two ('ß' -> 'SS') > > result = wcstotext(workspace, i); > > >> >> Also, in the latest patch, I also added checks and logging for *every* >> >> status returned from ICU. I hope this will help debugging on debian, >> >> where previous version didn't work. That excessive status checking is >> >> hardly be necessary once the stuff is better tested. >> >> >> >> I think the string copying and heap/palloc choices stands for most of >> >> the code bloat, together with the excessive status checking and >> >> logging. >> > >> > OK, move that into some common functions and I think it will be better. >> >> Best way for upper/lower/initcap is probably to use a function >> pointer... uhh... > > Uh, I don't think so. Just send pointers to the the function and let > the function allocate the memory, and another function to free them, or > something like that. I can probably do it if you want. I'll check it out, it seems simple enough. >> > We have depricated UNICODE in 8.1 in favor of UTF8 (no dash). Does >> > that help? >> >> I'm aware of that. It might help for unicode, but there are a bunch of >> other encodings. IANA has decided that utf-8 has *no* aliases, hence >> only utf-8 (with dash, but case insensitve) is accepted. Perhaps ICU is >> fogiving, I don't remember/know, but I think we need the mappings, >> unfortunately. > > OK. I guess I am just confused why the native implementations are OK. They're OK since they understand that UNICODE (or UTF8) is really utf-8. Problem is the strings used to describe them are not understood by ICU. BTW, the pg_enc2iananame_tbl is only used *from* internal representation *to* IANA, not the other way around. Maybe that fact lowers the rate of confusion? ;-) /Palle ---------------------------(end of broadcast)--------------------------- TIP 6: Have you searched our list archives? http://archives.postgresql.org |