From a7ffd1a8b15ad61b70d8babdad49aa7271f78512 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Fri, 12 Jan 2007 19:34:41 +0000 Subject: [PATCH] Update error messsage wording. --- src/backend/parser/analyze.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/parser/analyze.c b/src/backend/parser/analyze.c index ab262d870a..4117fbb6da 100644 --- a/src/backend/parser/analyze.c +++ b/src/backend/parser/analyze.c @@ -6,7 +6,7 @@ * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/backend/parser/analyze.c,v 1.358 2007/01/12 19:23:38 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/parser/analyze.c,v 1.359 2007/01/12 19:34:41 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -2549,7 +2549,7 @@ transformSetOperationStmt(ParseState *pstate, SelectStmt *stmt) (errcode(ERRCODE_FEATURE_NOT_SUPPORTED), errmsg("invalid UNION/INTERSECT/EXCEPT ORDER BY clause"), errdetail("Only result column names can be used, not expressions or functions."), - errhint("Add the expression/function to every SELECT, or place the query in a FROM clause."))); + errhint("Add the expression/function to every SELECT, or move the UNION into a FROM clause."))); qry->limitOffset = transformLimitClause(pstate, limitOffset, "OFFSET"); -- 2.40.0