Обсуждение: Re: BUG #5765: pg_dump fail to find upper case table name

Поиск
Список
Период
Сортировка

Re: BUG #5765: pg_dump fail to find upper case table name

От
"Kevin Grittner"
Дата:
"Cristiano"  wrote:

> Operating system: Linux
> Description: pg_dump fail to find upper case table name

> --table public."streetTypes"

Linux is eating the quotes.  Try:

--table public.'"streetTypes"'

While a bit confusing, this is not a bug in the code.  Perhaps the
documentation should specifically mention it....

-Kevin