Skip to content

Commit dc6c113

Browse files
committed
Removed debugging output isPgpro=%s from pg_dump
1 parent 99da5dc commit dc6c113

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/bin/pg_dump/pg_backup_db.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ _check_database_version(ArchiveHandle *AH)
7676
/* Check if we use pgpro or vanilla postgres */
7777
res = ExecuteSqlQueryForSingleRow((Archive *) AH, "SELECT exists(SELECT * FROM pg_proc WHERE proname = 'pgpro_version');");
7878
AH->public.isPgpro = (strcmp(PQgetvalue(res, 0, 0), "t") == 0);
79-
write_msg(NULL, "isPgpro = %s\n", PQgetvalue(res, 0, 0));
8079
PQclear(res);
8180
}
8281

0 commit comments

Comments
 (0)