Re: pgsql: Unicode case mapping tables and functions.

2024-03-08 Thread Jeff Davis
On Fri, 2024-03-08 at 10:24 +0200, Heikki Linnakangas wrote: > On 07/03/2024 21:18, Jeff Davis wrote: > > Unicode case mapping tables and functions. > > With -Wtype-limits, I'm seeing this warning: Thank you, fixed. Somehow I lost that flag from my script. Can you please add some recommended com

Re: pgsql: Unicode case mapping tables and functions.

2024-03-08 Thread Heikki Linnakangas
On 07/03/2024 21:18, Jeff Davis wrote: Unicode case mapping tables and functions. With -Wtype-limits, I'm seeing this warning: unicode_case.c: In function ‘convert_case’: unicode_case.c:107:47: warning: comparison of unsigned expression in ‘< 0’ is always false [-Wtype-limits] 107 |

pgsql: Unicode case mapping tables and functions.

2024-03-07 Thread Jeff Davis
Unicode case mapping tables and functions. Implements Unicode simple case mapping, in which all code points map to exactly one other code point unconditionally. These tables are generated from UnicodeData.txt, which is already being used by other infrastructure in src/common/unicode. The tables a