"David G. Johnston" <david.g.johnston@xxxxxxxxx> writes:
> On Sunday, July 28, 2024, Stepan Neretin <sncfmgg@xxxxxxxxx> wrote:
>> Hi, David. I have read this page several times and have not answered my
>> question. I'm probably not paying attention. Can you, I wanted to quote
>> what I'm missing out on
> “The location must be an existing, empty directory that is owned by the
> PostgreSQL operating system user.”
Indeed, that doesn't directly answer the question, but I think the
implication is clear: we do not expect a tablespace directory to
contain anything except files that Postgres itself puts there.
Ok, so the flow is:
Mkdir data
Create tablespace data
Mkdir data/tbl2
Create tablespace /data/tbl2
Both creates meet the preconditions, and while creating unrelated files within an existing tablespace directory is frowned upon and risky it isn’t something that is going to guarantee failure or can be prohibited.
Just bite the bullet and move the first tablespace to a better location, or leave things as is since, assuming /data/tbl2 is on the same filesystem as /data, the second tablespace isn’t isolated anyway, as Tom said.
David J.