From 1dbf8aa7a8159875bb46f6ee6ab0116eee76869b Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Tue, 26 Mar 2002 19:17:02 +0000 Subject: pg_class has a relnamespace column. You can create and access tables in schemas other than the system namespace; however, there's no search path yet, and not all operations work yet on tables outside the system namespace. --- src/backend/parser/parse_clause.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/backend/parser/parse_clause.c') diff --git a/src/backend/parser/parse_clause.c b/src/backend/parser/parse_clause.c index c2f578f4e6d..6213e9edefc 100644 --- a/src/backend/parser/parse_clause.c +++ b/src/backend/parser/parse_clause.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/parser/parse_clause.c,v 1.86 2002/03/22 02:56:33 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/parser/parse_clause.c,v 1.87 2002/03/26 19:15:57 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -133,7 +133,7 @@ setTargetTable(ParseState *pstate, RangeVar *relation, * analyze.c will eventually do the corresponding heap_close(), but *not* * release the lock. */ - pstate->p_target_relation = heap_openr(relation->relname, RowExclusiveLock); + pstate->p_target_relation = heap_openrv(relation, RowExclusiveLock); /* * Now build an RTE. -- cgit v1.2.3