Am 11.09.2008 um 11:29 schrieb Peter Eisentraut:
Im not yet convinced to switch to non-C locale. Is the following intended behavior:What other performance impacts can be expected?The performance impact is mainly with string comparisons and sorts. I suggest you run your own tests to find out what is acceptable in your scenario.
With lc_ctype C: select lower('ÄÖÜ'); => ÄÖÜ With lc_ctype en_US.utf8 select lower('ÆÅË'); => æåë ? (Both have server encoding UTF8) Axel ---