Merge branch 'bwtakacy-modify_error_message'

This commit is contained in:
Josh Kupershmidt 2015-01-26 19:26:13 -05:00
commit ad5ee75215

View File

@ -341,7 +341,7 @@ main(int argc, char *argv[])
{ {
if (!repack_one_database(orderby, errbuf, sizeof(errbuf))) if (!repack_one_database(orderby, errbuf, sizeof(errbuf)))
ereport(ERROR, ereport(ERROR,
(errcode(ERROR), errmsg("%s", errbuf))); (errcode(ERROR), errmsg("%s failed with error: %s", PROGRAM_NAME, errbuf)));
} }
} }