mirror of
https://github.com/postgres/postgres.git
synced 2026-02-23 18:04:41 -05:00
pg_dump docs: use escaped double-quotes, for Windows
On Unix, you can embed double-quotes in single-quotes, and via versa. However, on Windows, you can only escape double-quotes in double-quotes, so use that in the pg_dump -t/table example. Backpatch to 9.3. Report from Mike Toews
This commit is contained in:
parent
95ffbce9a1
commit
4d6ae6aaec
1 changed files with 1 additions and 1 deletions
|
|
@ -1224,7 +1224,7 @@ CREATE DATABASE foo WITH TEMPLATE template0;
|
|||
like
|
||||
|
||||
<screen>
|
||||
<prompt>$</prompt> <userinput>pg_dump -t '"MixedCaseName"' mydb > mytab.sql</userinput>
|
||||
<prompt>$</prompt> <userinput>pg_dump -t "\"MixedCaseName\"" mydb > mytab.sql</userinput>
|
||||
</screen></para>
|
||||
|
||||
</refsect1>
|
||||
|
|
|
|||
Loading…
Reference in a new issue