A (but copied many) typo of char-mapping tables

From: Kyotaro Horiguchi <horikyota(dot)ntt(at)gmail(dot)com>
To: pgsql-hackers(at)lists(dot)postgresql(dot)org
Subject: A (but copied many) typo of char-mapping tables
Date: 2021-07-16 08:02:09
Message-ID: 20210716.170209.175434392011070182.horikyota.ntt@gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

While I looked into a .map file in src/backend/utils/mb/Unicode, I
notice of a typo in it.

> static const pg_mb_radix_tree euc_jp_from_unicode_tree =
> {
> ..
> 0x0000, /* offset of table for 1-byte inputs */
> ...
> 0x0040, /* offset of table for 2-byte inputs */
> ...
> 0x02c3, /* offset of table for 3-byte inputs */
> ...
!> 0x0000, /* offset of table for 3-byte inputs */
> 0x00, /* b4_1_lower */
> 0x00, /* b4_1_upper */
> ...
> };

Yeah, the line above prefixed by '!' is apparently a typo of "4-byte
inputs", which comes from a typo in convutils.pm.

Fortunately make maintainer-clean; make all in the directory results
in no other differences so we can apply the attached patch to fix the
all propagated typos.

I don't think no backpatch is needed.

regards.

--
Kyotaro Horiguchi
NTT Open Source Software Center

Attachment Content-Type Size
fix_commet_typo_of_character_mapping_tables.patch text/x-patch 43.0 KB

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Drouvot, Bertrand 2021-07-16 08:07:10 Re: Minimal logical decoding on standbys
Previous Message Dean Rasheed 2021-07-16 08:01:55 Re: CREATE COLLATION - check for duplicate options and error out if found one