Re: Anyone care about type "filename" ? - Mailing list pgsql-hackers

From Tom Lane
Subject Re: Anyone care about type "filename" ?
Date
Msg-id 28204.965165033@sss.pgh.pa.us
Whole thread Raw
In response to Re: Anyone care about type "filename" ?  (The Hermit Hacker <scrappy@hub.org>)
Responses Re: Anyone care about type "filename" ?  (The Hermit Hacker <scrappy@hub.org>)
List pgsql-hackers
The Hermit Hacker <scrappy@hub.org> writes:
> okay, reword ... what would have been the difference between that and
> char(256)? :)  I'm just curious as to whether it had any checks that would
> have validated it as being a filename or something like that, that's all

Actually, the input converter did have some code to expand "~username"
paths.  But putting that in the input converter was broken by design;
you don't want the home directory expanded in a path when it's stored
into the database, you want to expand it when the path is used (what
if the user's home dir has moved since you made the DB entry?)

It might be worth pulling that code out of the CVS attic and inventing
a text-to-text "expand_pathname()" function that expands ~username and
perhaps also $ENVIRONMENTVAR in text strings interpreted as pathnames.
But I doubt that having a separate type for filenames is useful.
        regards, tom lane


pgsql-hackers by date:

Previous
From: Dave Smith
Date:
Subject: Re: Re: [GENERAL] random() function produces wrong range
Next
From: Philip Warner
Date:
Subject: Re: pg_dump & ownership (again)