RE: code contributions for 2025, WIP version

From: "Hayato Kuroda (Fujitsu)" <kuroda(dot)hayato(at)fujitsu(dot)com>
To: 'Robert Haas' <robertmhaas(at)gmail(dot)com>
Cc: "pgsql-hackers(at)postgresql(dot)org" <pgsql-hackers(at)postgresql(dot)org>
Subject: RE: code contributions for 2025, WIP version
Date: 2026-01-16 02:26:19
Message-ID: TY7PR01MB145548A697698F8B5CB90117CF58DA@TY7PR01MB14554.jpnprd01.prod.outlook.com
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Dear Robert,

Thanks for working on it, I really appreciate you. I found a small issue for old data.

My name seemed to be registered in reverse order. My given name is "Hayato", and family name is "Kuroda".
I'm unfamiliar around here but should they be "Hayato Kuroda"?

```
postgres=# SELECT author, COUNT(*) FROM commits2019 WHERE author LIKE '%Hayato%' GROUP BY author;
author | count
---------------+-------
Kuroda Hayato | 1
(1 row)

postgres=# SELECT author, COUNT(*) FROM commits2024 WHERE author LIKE '%Hayato%' GROUP BY author;
author | count
---------------+-------
Hayato Kuroda | 12
Kuroda Hayato | 5
(2 rows)

postgres=# SELECT author, COUNT(*) FROM commits2025 WHERE author LIKE '%Hayato%' GROUP BY author;
author | count
---------------+-------
Hayato Kuroda | 25
(1 row)
```

Best regards,
Hayato Kuroda
FUJITSU LIMITED

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message 洪伊 2026-01-16 02:36:38 [PATCH] pl: fix can not build free-thread for plpython extension like 3.14t
Previous Message Japin Li 2026-01-16 02:25:29 Re: Add IS_INDEX macro to brin and gist index