From: | Andrew Dunstan <andrew(at)dunslane(dot)net> |
---|---|
To: | PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org> |
Subject: | pg_basebackup check vs Windows file path limits |
Date: | 2023-07-02 13:15:17 |
Message-ID: | 666ac55b-3400-fb2c-2cea-0281bf36a53c@dunslane.net |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
The buildfarm animal fairywren has been failing the tests for
pg_basebackup because it can't create a file with a path longer than 255
chars. This has just been tripped because for release 16 it's running
TAP tests, and the branch name is part of the file path, and
"REL_16_STABLE" is longer than "HEAD". I did think of chdir'ing into the
directory to create the file, but experimentation shows that doesn't
solve matters. I also adjusted the machine's settings related to long
file names, but to no avail, so for now I propose to reduce slightly the
name of the long file so it still exercises the check for file names
longer than 100 but doesn't trip this up on fairywren. But that's a
bandaid. I don't have a good solution for now.
cheers
andrew
--
Andrew Dunstan
EDB:https://www.enterprisedb.com
From | Date | Subject | |
---|---|---|---|
Next Message | Tom Lane | 2023-07-02 13:23:40 | Re: Fdw batch insert error out when set batch_size > 65535 |
Previous Message | jian he | 2023-07-02 11:56:51 | /src/include/access/htup_details.h some comments kind of confusing.... |