1
0
mirror of https://github.com/postgres/postgres.git synced 2025-09-02 04:21:28 +03:00

Message styling

This commit is contained in:
Peter Eisentraut
2004-10-22 16:04:35 +00:00
parent c70b7b7a6c
commit 77c0204a37
3 changed files with 9 additions and 9 deletions

View File

@@ -12,7 +12,7 @@
* by PostgreSQL
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/bin/pg_dump/pg_dump.c,v 1.389 2004/10/18 00:20:41 tgl Exp $
* $PostgreSQL: pgsql/src/bin/pg_dump/pg_dump.c,v 1.390 2004/10/22 16:04:35 petere Exp $
*
*-------------------------------------------------------------------------
*/
@@ -6930,7 +6930,7 @@ dumpConstraint(Archive *fout, ConstraintInfo *coninfo)
if (indxinfo == NULL)
{
write_msg(NULL, "missing index for constraint %s\n",
write_msg(NULL, "missing index for constraint \"%s\"\n",
coninfo->dobj.name);
exit_nicely();
}
@@ -7100,7 +7100,7 @@ dumpConstraint(Archive *fout, ConstraintInfo *coninfo)
}
else
{
write_msg(NULL, "unexpected constraint type\n");
write_msg(NULL, "unrecognized constraint type: %c\n", coninfo->contype);
exit_nicely();
}
@@ -7699,7 +7699,7 @@ getDependencies(void)
return;
if (g_verbose)
write_msg(NULL, "fetching dependency data\n");
write_msg(NULL, "reading dependency data\n");
/* Make sure we are in proper schema */
selectSourceSchema("pg_catalog");