projects
/
users
/
bernd
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0d22987
)
pg_dump docs: use escaped double-quotes, for Windows
author
Bruce Momjian
<bruce@momjian.us>
Mon, 1 Jul 2013 18:52:56 +0000
(14:52 -0400)
committer
Bruce Momjian
<bruce@momjian.us>
Mon, 1 Jul 2013 18:52:59 +0000
(14:52 -0400)
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
doc/src/sgml/ref/pg_dump.sgml
patch
|
blob
|
blame
|
history
diff --git
a/doc/src/sgml/ref/pg_dump.sgml
b/doc/src/sgml/ref/pg_dump.sgml
index 2b5e95bfe9a3d1ee909b69525f320dfa53c061c8..1ed5e4f481c1505983119c31bc6ec72fda54516a 100644
(file)
--- a/
doc/src/sgml/ref/pg_dump.sgml
+++ b/
doc/src/sgml/ref/pg_dump.sgml
@@
-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>