summaryrefslogtreecommitdiff
path: root/src/bin/psql/command.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2016-05-21 22:17:00 -0400
committerPeter Eisentraut <peter_e@gmx.net>2016-05-21 22:17:00 -0400
commita50b605aa4487cbf677625a7a1bb5f2b05058d91 (patch)
tree89933f5974861fae0070d17811fe63ad0de626ca /src/bin/psql/command.c
parent768d6f90f9e44af96c22135a8eb1e83ed73c422b (diff)
psql: Message style improvements
Diffstat (limited to 'src/bin/psql/command.c')
-rw-r--r--src/bin/psql/command.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/psql/command.c b/src/bin/psql/command.c
index 87adfce9c11..693b5312afc 100644
--- a/src/bin/psql/command.c
+++ b/src/bin/psql/command.c
@@ -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, ")");