aboutsummaryrefslogtreecommitdiff
path: root/src/backend/parser/parse_expr.c
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2001-05-18 21:24:20 +0000
committerBruce Momjian <bruce@momjian.us>2001-05-18 21:24:20 +0000
commitdc0ff5c67ae7d66474654075b198b42fafeb932f (patch)
tree53423e347b146e70b9fb88879da026a20e36661d /src/backend/parser/parse_expr.c
parent27b0e8c0b0cf857e383595f34f98ab1dd9f35ff4 (diff)
downloadpostgresql-dc0ff5c67ae7d66474654075b198b42fafeb932f.tar.gz
postgresql-dc0ff5c67ae7d66474654075b198b42fafeb932f.zip
Small code cleanups,formatting.
Diffstat (limited to 'src/backend/parser/parse_expr.c')
-rw-r--r--src/backend/parser/parse_expr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/parser/parse_expr.c b/src/backend/parser/parse_expr.c
index 9c60b17cf8c..509f1921f9f 100644
--- a/src/backend/parser/parse_expr.c
+++ b/src/backend/parser/parse_expr.c
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/parser/parse_expr.c,v 1.92 2001/03/22 03:59:41 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/parser/parse_expr.c,v 1.93 2001/05/18 21:24:19 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -573,7 +573,7 @@ transformIdent(ParseState *pstate, Ident *ident, int precedence)
* appear
*/
if (ident->indirection == NIL &&
- refnameRangeOrJoinEntry(pstate, ident->name, &sublevels_up) != NULL)
+ refnameRangeOrJoinEntry(pstate, ident->name, &sublevels_up) != NULL)
{
ident->isRel = TRUE;
result = (Node *) ident;