Re: Anyone care about type "filename" ?

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Anyone care about type "filename" ?
Дата
Msg-id 28204.965165033@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: Anyone care about type "filename" ?  (The Hermit Hacker <scrappy@hub.org>)
Ответы Re: Anyone care about type "filename" ?
Список 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 по дате отправления:

Предыдущее
От: Dave Smith
Дата:
Сообщение: Re: Re: [GENERAL] random() function produces wrong range
Следующее
От: Philip Warner
Дата:
Сообщение: Re: pg_dump & ownership (again)