Re: Fix for defaults in createuser

Поиск
Список
Период
Сортировка
От Bruce Momjian
Тема Re: Fix for defaults in createuser
Дата
Msg-id 200101211356.IAA10040@candle.pha.pa.us
обсуждение исходный текст
Ответ на Re: Fix for defaults in createuser  (Peter Eisentraut <peter_e@gmx.net>)
Список pgsql-patches
> Bruce Momjian writes:
>
> > !       if [ $REPLY = "y" -o $REPLY = "Y" ]; then
> >
> > fixed to:
> >
> > !       if [ "$REPLY" = "y" -o "$REPLY" = "Y" ]; then
>
> Good.
>
> FYI, it's never necessary to quote the right side of a shell variable
> assignment.
>
> FOO=$BAR
>
> always works, as does
>
> case $foo in ...
>
> But it doesn't hurt of course.

I see:

    $ X="a b"
    $ Y=$X

I never realized that.  Now I am confused why 'test' needs it, but
assignment doesn't.

--
  Bruce Momjian                        |  http://candle.pha.pa.us
  pgman@candle.pha.pa.us               |  (610) 853-3000
  +  If your life is a hard drive,     |  830 Blythe Avenue
  +  Christ can be your backup.        |  Drexel Hill, Pennsylvania 19026

В списке pgsql-patches по дате отправления:

Предыдущее
От: Peter Eisentraut
Дата:
Сообщение: Re: Fix for defaults in createuser
Следующее
От: Tom Lane
Дата:
Сообщение: Re: [HACKERS] Re: Patch to support transactions with BLOBs for current CVS