mirror of
https://github.com/postgres/postgres.git
synced 2025-07-02 09:02:37 +03:00
psql: Message style improvements
This commit is contained in:
@ -854,7 +854,7 @@ exec_command(const char *cmd,
|
||||
puts(_("out of memory"));
|
||||
}
|
||||
else
|
||||
puts(_("There was no previous error."));
|
||||
puts(_("There is no previous error."));
|
||||
}
|
||||
|
||||
/* \f -- change field separator */
|
||||
@ -3363,7 +3363,7 @@ get_create_object_cmd(EditableObjectType obj_type, Oid oid,
|
||||
appendPQExpBufferStr(buf, "CREATE OR REPLACE VIEW ");
|
||||
break;
|
||||
default:
|
||||
psql_error("%s.%s is not a view\n",
|
||||
psql_error("\"%s.%s\" is not a view\n",
|
||||
nspname, relname);
|
||||
result = false;
|
||||
break;
|
||||
@ -3379,7 +3379,7 @@ get_create_object_cmd(EditableObjectType obj_type, Oid oid,
|
||||
pset.encoding,
|
||||
standard_strings()))
|
||||
{
|
||||
psql_error("Could not parse reloptions array\n");
|
||||
psql_error("could not parse reloptions array\n");
|
||||
result = false;
|
||||
}
|
||||
appendPQExpBufferStr(buf, ")");
|
||||
|
Reference in New Issue
Block a user