diff options
author | Bruce Momjian <bruce@momjian.us> | 1997-09-05 16:31:48 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1997-09-05 16:31:48 +0000 |
commit | 4bce39fe94f9be6c18e2e17c96b098fd32c7ce07 (patch) | |
tree | d09758ed29f926dd9de12d23a89a591d8b53e128 | |
parent | c753a6a1e2a12bc592603fb8032f41f31f340a92 (diff) | |
download | postgresql-4bce39fe94f9be6c18e2e17c96b098fd32c7ce07.tar.gz postgresql-4bce39fe94f9be6c18e2e17c96b098fd32c7ce07.zip |
missing backslash.
-rw-r--r-- | contrib/pginterface/pgwordcount.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/pginterface/pgwordcount.c b/contrib/pginterface/pgwordcount.c index 437f64a064a..f2d2d488fcf 100644 --- a/contrib/pginterface/pgwordcount.c +++ b/contrib/pginterface/pgwordcount.c @@ -60,7 +60,7 @@ int main(int argc, char **argv) else sprintf(query,"\ UPDATE words \ - SET matches = matches + 1 + SET matches = matches + 1 \ WHERE word = '%s'", line); doquery(query); row++; |