Skip to content
Snippets Groups Projects
  1. Nov 21, 2000
  2. Jul 15, 2000
    • Tom Lane's avatar
      Cleanup of code for creating index entries. Functional indexes with · 6bfe6403
      Tom Lane authored
      pass-by-ref data types --- eg, an index on lower(textfield) --- no longer
      leak memory during index creation or update.  Clean up a lot of redundant
      code ... did you know that copy, vacuum, truncate, reindex, extend index,
      and bootstrap each basically duplicated the main executor's logic for
      extracting information about an index and preparing index entries?
      Functional indexes should be a little faster now too, due to removal
      of repeated function lookups.
      CREATE INDEX 'opt_type' clause is deimplemented by these changes,
      but I haven't removed it from the parser yet (need to merge with
      Thomas' latest change set first).
      6bfe6403
  3. Jun 13, 2000
  4. Apr 12, 2000
  5. Jul 16, 1999
  6. Jul 15, 1999
  7. Feb 14, 1999
  8. Sep 01, 1998
  9. Feb 26, 1998
  10. Jan 24, 1998
  11. Jan 15, 1998
    • PostgreSQL Daemon's avatar
      Thank god for searchable mail archives. · baef78d9
      PostgreSQL Daemon authored
      Patch by: wieck@sapserv.debis.de (Jan Wieck)
      
         One  of  the design rules of PostgreSQL is extensibility. And
         to follow this rule means (at least for me) that there should
         not  only  be a builtin PL.  Instead I would prefer a defined
         interface for PL implemetations.
      baef78d9
  12. Sep 08, 1997
  13. Sep 07, 1997
  14. Aug 19, 1997
  15. May 22, 1997
    • Vadim B. Mikheev's avatar
      gist.h: · 12d9a12e
      Vadim B. Mikheev authored
      /*
      ** You can have as many strategies as you please in GiSTs, as
      ** long as your consistent method can handle them
      */
      #define GISTNStrategies                 100
                                              ^^^
      - too big number:
      
      strat.h->StrategyEvaluationData->StrategyExpression  expression[12]
                                                                      ^^
       - so 12 is real max # of strategies, or StrategyEvaluationIsValid
      crashes backend (called if CASSER defined).
      12d9a12e
  16. Jan 10, 1997
  17. Nov 13, 1996
    • Marc G. Fournier's avatar
      Commit of a *MAJOR* patch from Dan McGuirk <djm@indirect.com> · 07a65b22
      Marc G. Fournier authored
      Changes:
      
              * Unique index capability works using the syntax 'create unique
                index'.
      
              * Duplicate OID's in the system tables are removed.  I put
                little scripts called 'duplicate_oids' and 'find_oid' in
                include/catalog that help to find and remove duplicate OID's.
                I also moved 'unused_oids' from backend/catalog to
                include/catalog, since it has to be in the same directory
                as the include files in order to work.
      
              * The backend tries converting the name of a function or aggregate
                to all lowercase if the original name given doesn't work (mostly
                for compatibility with ODBC).
      
              * You can 'SELECT NULL' to your heart's content.
      
              * I put my _bt_updateitem fix in instead, which uses
                _bt_insertonpg so that even if the new key is so big that
                the page has to be split, everything still works.
      
              * All literal references to system catalog OID's have been
                replaced with references to define'd constants from the catalog
                header files.
      
              * I added a couple of node copy functions.  I think this was a
                preliminary attempt to get rules to work.
      07a65b22
  18. Nov 10, 1996
  19. Nov 05, 1996
  20. Nov 03, 1996
  21. Oct 23, 1996
  22. Oct 19, 1996
  23. Aug 27, 1996
Loading