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

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

From
"Kevin Grittner"
Date:
"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