pgsql: Fix get_object_namespace() not to think extensions are "in" a sc

From: Robert Haas <rhaas(at)postgresql(dot)org>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Fix get_object_namespace() not to think extensions are "in" a sc
Date: 2011-10-20 04:07:53
Message-ID: E1RGjv7-0006Dg-Kd@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Fix get_object_namespace() not to think extensions are "in" a schema.

extnamespace means something altogether different in this context.
Mostly by accident, this coding error (introduced in my commit
82a4a777d94bec965ab2f1d04b6e6a3f0447b377) broke the buildfarm instead
of just silently doing the wrong thing.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/8f3362d4b7430079bb53a954e372955eb285cf52

Modified Files
--------------
src/backend/catalog/objectaddress.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2011-10-20 19:44:31 pgsql: Fix memory leak in tab completion.
Previous Message Robert Haas 2011-10-20 03:47:16 pgsql: Add "skipping" to the NOTICE produced by DROP OPERATOR CLASS IF