Use C99-designated initializer syntax for arrays related to encodings
authorMichael Paquier
Thu, 29 Feb 2024 00:54:25 +0000 (09:54 +0900)
committerMichael Paquier
Thu, 29 Feb 2024 00:54:25 +0000 (09:54 +0900)
commitada87a4d95fc39dfb1214edf6653390314b6f0df
treefb070a1acf4e649f1d6adb86116263329505f28f
parente8aecc5c2ce1d3b2b1b01bd770c14f5214c2a369
Use C99-designated initializer syntax for arrays related to encodings

This updates the following lookup arrays to use C99-designated
initializer syntax, indexed based on the enum pg_enc:
pg_enc2icu_tbl[]
pg_enc2name_tbl[]
pg_wchar_table[]

This is more readable, and removes problems with ordering mistakes as
this removes dependencies between the arrays and their lookup index in
the enum pg_enc.  So, adding new encodings becomes easier, even if this
does not happen often.

Author: Jelte Fennema-Nio
Reviewed-by: Jian He, Japin Li
Discussion: https://postgr.es/m/CAGECzQT3caUbcCcszNewCCmMbCuyP7XNAm60J3ybd6PN5kH2Dw@mail.gmail.com
src/common/encnames.c
src/common/wchar.c
src/include/mb/pg_wchar.h