]> granicus.if.org Git - postgresql/commitdiff
Remove perl symbol table additions for plperl functions, and mention of it
authorAndrew Dunstan <andrew@dunslane.net>
Wed, 16 Jun 2010 14:50:34 +0000 (14:50 +0000)
committerAndrew Dunstan <andrew@dunslane.net>
Wed, 16 Jun 2010 14:50:34 +0000 (14:50 +0000)
in the release notes, as it is not apparently providing anything useful.

doc/src/sgml/release-9.0.sgml
src/pl/plperl/plperl.c

index d3fabaf83ecc90cb55124db7a41663cd100220f0..3f3c966894581f187012c2601f1579b56413499e 100644 (file)
@@ -1,4 +1,4 @@
-<!-- $PostgreSQL: pgsql/doc/src/sgml/release-9.0.sgml,v 2.31 2010/06/14 02:18:43 rhaas Exp $ -->
+<!-- $PostgreSQL: pgsql/doc/src/sgml/release-9.0.sgml,v 2.32 2010/06/16 14:50:34 adunstan Exp $ -->
 
  <sect1 id="release-9-0">
   <title>Release 9.0</title>
       </para>
      </listitem>
 
-     <listitem>
-      <para>
-       PL/Perl subroutines are now given perl-visible names (Tim Bunce)
-      </para>
-
-      <para>
-       PL/Perl subroutines are anonymous subrefs; this change adds entries 
-       to the Perl symbol table for them, making profiling and code coverage 
-       tools much more usable.
-      </para>
-     </listitem>
-
     </itemizedlist>
 
    </sect4>
index 7c6545488377040b32870c693a4e609faae5cfc1..b22801b851046170f541b308ea5e9f050f5941ea 100644 (file)
@@ -1,7 +1,7 @@
 /**********************************************************************
  * plperl.c - perl as a procedural language for PostgreSQL
  *
- *       $PostgreSQL: pgsql/src/pl/plperl/plperl.c,v 1.176 2010/05/17 19:43:04 adunstan Exp $
+ *       $PostgreSQL: pgsql/src/pl/plperl/plperl.c,v 1.177 2010/06/16 14:50:34 adunstan Exp $
  *
  **********************************************************************/
 
@@ -1319,10 +1319,6 @@ plperl_create_sub(plperl_proc_desc *prodesc, char *s, Oid fn_oid)
                                (errmsg("didn't get a CODE ref from compiling %s",
                                                prodesc->proname)));
        
-       /* give the subroutine a proper name in the main:: symbol table */
-       CvGV(SvRV(subref)) = (GV *) newSV(0);
-       gv_init(CvGV(SvRV(subref)), PL_defstash, subname, strlen(subname), TRUE);
-       
        prodesc->reference = subref;
        
        return;