Repository: incubator-hawq Updated Branches: refs/heads/master 804b0b601 -> 831de3a6d
HAWQ-889. Tweak the error output for quicklz table creation. Project: http://git-wip-us.apache.org/repos/asf/incubator-hawq/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-hawq/commit/831de3a6 Tree: http://git-wip-us.apache.org/repos/asf/incubator-hawq/tree/831de3a6 Diff: http://git-wip-us.apache.org/repos/asf/incubator-hawq/diff/831de3a6 Branch: refs/heads/master Commit: 831de3a6d165ad44608581133f7a1b51d4b7d057 Parents: 804b0b6 Author: Paul Guo <[email protected]> Authored: Tue Jul 5 10:18:19 2016 +0800 Committer: ivan <[email protected]> Committed: Tue Jul 5 10:28:18 2016 +0800 ---------------------------------------------------------------------- src/backend/access/common/reloptions.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-hawq/blob/831de3a6/src/backend/access/common/reloptions.c ---------------------------------------------------------------------- diff --git a/src/backend/access/common/reloptions.c b/src/backend/access/common/reloptions.c index d7c535e..28ab0f0 100644 --- a/src/backend/access/common/reloptions.c +++ b/src/backend/access/common/reloptions.c @@ -519,7 +519,7 @@ default_reloptions(Datum reloptions, bool validate, char relkind, { ereport(ERROR, (errcode(ERRCODE_FEATURE_NOT_SUPPORTED), - errmsg("compresstype \"%s\" is not supported anymore", compresstype), + errmsg("compresstype \"%s\" is not supported", compresstype), errOmitLocation(true))); }
