From d79f3884f41952459068b5cd666140fdd6abdf98 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Sun, 25 Oct 1998 02:48:55 +0000 Subject: [PATCH] cleanup --- src/bin/pg_dump/pg_upgrade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/pg_dump/pg_upgrade b/src/bin/pg_dump/pg_upgrade index 2fc631fe36..22eff82325 100755 --- a/src/bin/pg_dump/pg_upgrade +++ b/src/bin/pg_dump/pg_upgrade @@ -61,7 +61,7 @@ fi # then shouldn't be in there anyway cat $INPUT | awk ' { - if (toupper($1) != "COPY" && $2 != "pg_shadow") + if (toupper($1) == "COPY" && $2 != "pg_shadow") while (getline $0 > 0 && $0 != "\\.") ; else print $0; -- 2.40.0