Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 605b4c5

Browse files
committed
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
1 parent 0d22987 commit 605b4c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/src/sgml/ref/pg_dump.sgml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1224,7 +1224,7 @@ CREATE DATABASE foo WITH TEMPLATE template0;
12241224
like
12251225

12261226
<screen>
1227-
<prompt>$</prompt> <userinput>pg_dump -t '"MixedCaseName"' mydb &gt; mytab.sql</userinput>
1227+
<prompt>$</prompt> <userinput>pg_dump -t "\"MixedCaseName\"" mydb &gt; mytab.sql</userinput>
12281228
</screen></para>
12291229

12301230
</refsect1>

0 commit comments

Comments
 (0)