summaryrefslogtreecommitdiff
path: root/src/bin
diff options
context:
space:
mode:
authorPeter Eisentraut2010-11-23 20:27:50 +0000
committerPeter Eisentraut2010-11-23 20:34:55 +0000
commitfc946c39aeacdff7df60c83fca6582985e8546c8 (patch)
tree866145f64c09c0673a4aa3d3a2f5647f0b7afc45 /src/bin
parent44475e782f4674d257b9e5c1a3930218a4b4deea (diff)
Remove useless whitespace at end of lines
Diffstat (limited to 'src/bin')
-rw-r--r--src/bin/pg_dump/README6
-rw-r--r--src/bin/pg_dump/pg_dump.c2
-rw-r--r--src/bin/psql/psqlscan.l6
3 files changed, 7 insertions, 7 deletions
diff --git a/src/bin/pg_dump/README b/src/bin/pg_dump/README
index c0a84ff63a0..5015b7cd456 100644
--- a/src/bin/pg_dump/README
+++ b/src/bin/pg_dump/README
@@ -19,7 +19,7 @@ or, to dump in TAR format
pg_dump <db-name> -Ft > <backup-file>
To restore, try
-
+
To list contents:
pg_restore -l <backup-file> | less
@@ -62,12 +62,12 @@ or, simply:
TAR
===
-The TAR archive that pg_dump creates currently has a blank username & group for the files,
+The TAR archive that pg_dump creates currently has a blank username & group for the files,
but should be otherwise valid. It also includes a 'restore.sql' script which is there for
the benefit of humans. The script is never used by pg_restore.
Note: the TAR format archive can only be used as input into pg_restore if it is in TAR form.
-(ie. you should not extract the files then expect pg_restore to work).
+(ie. you should not extract the files then expect pg_restore to work).
You can extract, edit, and tar the files again, and it should work, but the 'toc'
file should go at the start, the data files be in the order they are used, and
diff --git a/src/bin/pg_dump/pg_dump.c b/src/bin/pg_dump/pg_dump.c
index 55ea6841a44..3bca417cef9 100644
--- a/src/bin/pg_dump/pg_dump.c
+++ b/src/bin/pg_dump/pg_dump.c
@@ -10498,7 +10498,7 @@ dumpACL(Archive *fout, CatalogId objCatId, DumpId objDumpId,
}
/*
- * dumpSecLabel
+ * dumpSecLabel
*
* This routine is used to dump any security labels associated with the
* object handed to this routine. The routine takes a constant character
diff --git a/src/bin/psql/psqlscan.l b/src/bin/psql/psqlscan.l
index 7942fe5c458..a1da032a6f9 100644
--- a/src/bin/psql/psqlscan.l
+++ b/src/bin/psql/psqlscan.l
@@ -277,8 +277,8 @@ xqinside [^']+
/* $foo$ style quotes ("dollar quoting")
* The quoted string starts with $foo$ where "foo" is an optional string
- * in the form of an identifier, except that it may not contain "$",
- * and extends to the first occurrence of an identical string.
+ * in the form of an identifier, except that it may not contain "$",
+ * and extends to the first occurrence of an identical string.
* There is *no* processing of the quoted text.
*
* {dolqfailed} is an error rule to avoid scanner backup when {dolqdelim}
@@ -364,7 +364,7 @@ self [,()\[\].;\:\+\-\*\/\%\^\<\>\=]
op_chars [\~\!\@\#\^\&\|\`\?\+\-\*\/\%\<\>\=]
operator {op_chars}+
-/* we no longer allow unary minus in numbers.
+/* we no longer allow unary minus in numbers.
* instead we pass it separately to parser. there it gets
* coerced via doNegate() -- Leon aug 20 1999
*