Skip to content

2.25.2.0-b141

@jaki jaki tagged this 11 Mar 20:48
Summary:
YB commit 779d27febb1d77b7a2f14628987b27bc00af591b incorrectly changes
EOF newlines of some files in src/postgres/src/include/snowball.  YB
initial PG 15.2 merge 55782d561e55ef972f2470a4ae887dd791bb4a97
incorrectly does not delete
src/postgres/src/include/snowball/libstemmer/stem_ISO_8859_1_hungarian.h
when it should have according to upstream PG
fd582317e10e26083b8c720598bfcdbf89787112.

Fix all discrepancies by syncing with PG 15.2's snowball directory as
follows:

    #!/usr/bin/env bash
    # Assumes postgres repo lives in ~/code/postgres:
    git -C ~/code/postgres checkout REL_15_2
    rsync -r --delete ~/code/postgres/src/include/snowball/ src/postgres/src/include/snowball/

Jira: DB-15702

Test Plan:
On Almalinux 8:

    #!/usr/bin/env bash
    # Assumes postgres repo lives in ~/code/postgres:
    git -C ~/code/postgres checkout REL_15_2
    diff -r ~/code/postgres/src/include/snowball/ src/postgres/src/include/snowball/

Close: #26352

Reviewers: hsunder, telgersma

Reviewed By: telgersma

Subscribers: yql

Differential Revision: https://phorge.dev.yugabyte.com/D42439
Assets 2
Loading