Re: psql: default base and password reading

Поиск
Список
Период
Сортировка
От Bruce Momjian
Тема Re: psql: default base and password reading
Дата
Msg-id 200110131614.f9DGEX801100@candle.pha.pa.us
обсуждение исходный текст
Ответ на psql: default base and password reading  (Adam Osuchowski <adwol@polsl.gliwice.pl>)
Список pgsql-patches
> Bruce Momjian <pgman@candle.pha.pa.us> writes:
> >> On second thought --- are we creating any portability problems if we
> >> assume /dev/tty exists?  In particular, what about the Windows port
> >> of psql?  Will it still work?
>
> > I am sure cygwin takes care of this.
>
> Please recall that we have a *native* port of psql ... cygwin doesn't
> help.

Ewe!

The only other mention of /dev/tty I see is in psql/command.c:

    /* \s save history in a file or show it on the screen */
    else if (strcmp(cmd, "s") == 0)
    {
        char       *fname = scan_option(&string, OT_NORMAL, NULL, true);

        success = saveHistory(fname ? fname : "/dev/tty");

        if (success && !quiet && fname)
            printf(gettext("Wrote history to %s.\n"), fname);
        free(fname);
    }

I can easily #ifdef around the /dev/tty open.  Can someone comment on
what opening /dev/tty does on a Win32 machines without cygwin?

--
  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 по дате отправления:

Предыдущее
От: Bruce Momjian
Дата:
Сообщение: Re: psql: default base and password reading
Следующее
От: Tom Lane
Дата:
Сообщение: Re: psql: default base and password reading