1. 24 6月, 2001 2 次提交
  2. 23 6月, 2001 9 次提交
  3. 22 6月, 2001 6 次提交
  4. 21 6月, 2001 6 次提交
  5. 20 6月, 2001 9 次提交
  6. 19 6月, 2001 8 次提交
    • B
      Move temprel name define from temprel.h to rel.h. · d9a069e2
      Bruce Momjian 提交于
      d9a069e2
    • T
      Bring RelationGetRelationName into sync with new temp rel names. · d47e10bf
      Tom Lane 提交于
      Quick hack -- need to decide which header should include the other.
      d47e10bf
    • H
      8804bdcd
    • H
      Changed the error handling as follows. · 76d38cb0
      Hiroshi Inoue 提交于
      1) ERRORs cause an SQL_ERROR and the SQLSTATE='S1000'.
      2) NOTICEs cause an SQL_SUCCESS_WITH_INFO and the succeeding
         SQLError() returns the NOTICE message.
      76d38cb0
    • B
      RESET ALL secondary patch: · 3709a5ad
      Bruce Momjian 提交于
      Here is Tomified version of my 2 pending patches.
      Dropped the set_.._real change as it is not needed.
      Desc would be:
      
      * use GUC for settings from cmdline
      
      Marko Kreen
      3709a5ad
    • B
      Well, after persuading cvsup and cvs that it _is_ possible to have local · 0ed7864d
      Bruce Momjian 提交于
      modifiable repositories, I have a clean untrusted plperl patch to offer
      you :)
      
      Highlights:
      * There's one perl interpreter used for both trusted and untrusted
      procedures. I do think its unnecessary to keep two perl
      interpreters around. If someone can break out from trusted "Safe" perl
      mode, well, they can do what they want already. If someone disagrees, I
      can change this.
      
      * Opcode is not statically loaded anymore. Instead, we load Dynaloader,
      which then can grab Opcode (and anything else you can 'use') on its own.
      
      * Checked to work on FreeBSD 4.3 + perl 5.5.3 , OpenBSD 2.8 + perl5.6.1,
      RedHat 6.2 + perl 5.5.3
      
      * Uses ExtUtils::Embed to find what options are necessary to link with
      perl shared libraries
      
      * createlang is also updated, it can create untrusted perl using 'plperlu'
      
      * Example script (assuming you have Mail::Sendmail installed):
      create function foo() returns text as '
               use Mail::Sendmail;
      
               %mail = ( To      => q(you@yourname.com),
                         From    => q(me@here.com),
                         Message => "This is a very short message"
                        );
               sendmail(%mail) or die $Mail::Sendmail::error;
      return          "OK. Log says:\n", $Mail::Sendmail::log;
      ' language 'plperlu';
      
      Alex Pilosov
      0ed7864d
    • B
      The attached patch enables the contrib subtree to build cleanly under · 558fae16
      Bruce Momjian 提交于
      Cygwin with the possible exception of mSQL-interface.  Since I don't
      have mSQL installed, I skipped this tool.
      
      Except for dealing with a missing getopt.h (oid2name) and HUGE (seg),
      the bulk of the patch uses the standard PostgreSQL approach to deal with
      Windows DLL issues.
      
      I tested the build aspect of this patch under Cygwin and Linux without
      any ill affects.  Note that I did not actually attempt to test the code
      for functionality.
      
      The procedure to apply the patch is as follows:
      
          $ # save the attachment as /tmp/contrib.patch
          $ # change directory to the top of the PostgreSQL source tree
          $ patch -p0 </tmp/contrib.patch
      
      Jason
      558fae16
    • B
      Untar copyright.html file and make good version. · 22dc12b8
      Bruce Momjian 提交于
      22dc12b8