Skip to content
Snippets Groups Projects
  1. Mar 09, 2004
  2. Mar 05, 2004
  3. Mar 04, 2004
  4. Mar 03, 2004
  5. Feb 29, 2004
  6. Feb 18, 2004
  7. Jan 27, 2004
  8. Jan 11, 2004
  9. Jan 08, 2004
  10. Dec 25, 2003
    • Bruce Momjian's avatar
      > > I have no idea if this in Oracle or not. But it's something I · 1c757c49
      Bruce Momjian authored
      > > needed, and other people in the past asked about it too.
      >
      > It is in Oracle, but you aren't exactly on the spot.  It should be
      >
      > IYYY - 4 digits  ('2003')
      > IYY  - 3 digits  ('003')
      > IY   - 2 digits  ('03')
      > I    - 1 digit   ('3')
      
      Here is an updated patch that does that.
      
      Kurt Roeckx
      1c757c49
  11. Dec 23, 2003
  12. Dec 18, 2003
  13. Dec 03, 2003
  14. Dec 01, 2003
    • Bruce Momjian's avatar
      This patch adds a new GUC var, "default_with_oids", which follows the · 7ce9b7c0
      Bruce Momjian authored
      proposal for eventually deprecating OIDs on user tables that I posted
      earlier to pgsql-hackers. pg_dump now always specifies WITH OIDS or
      WITHOUT OIDS when dumping a table. The documentation has been updated.
      
      Neil Conway
      7ce9b7c0
    • Bruce Momjian's avatar
      Attached is a patch implementing factorial(), returning numeric. Points · 04a4821a
      Bruce Momjian authored
      to note:
      
      1) arttype is numeric. I thought this was the best way of allowing
      arbitarily large factorials, even though factorial(2^63) is a large
      number. Happy to change to integers if this is overkill.
      2) since we're accepting numeric arguments, the patch tests for floats.
      If a numeric is passed with non-zero decimal portion, an error is raised
      since (from memory) they are undefined.
      
      Gavin Sherry
      04a4821a
  15. Nov 29, 2003
    • PostgreSQL Daemon's avatar
      · 969685ad
      PostgreSQL Daemon authored
      $Header: -> $PostgreSQL Changes ...
      969685ad
  16. Nov 21, 2003
    • Tom Lane's avatar
      COMMENT ON casts, conversions, languages, operator classes, and · 42ce74bf
      Tom Lane authored
      large objects.  Dump all these in pg_dump; also add code to pg_dump
      user-defined conversions.  Make psql's large object code rely on
      the backend for inserting/deleting LOB comments, instead of trying to
      hack pg_description directly.  Documentation and regression tests added.
      
      Christopher Kings-Lynne, code reviewed by Tom
      42ce74bf
  17. Nov 16, 2003
  18. Nov 13, 2003
  19. Nov 12, 2003
    • Tom Lane's avatar
      Cross-data-type comparisons are now indexable by btrees, pursuant to my · fa5c8a05
      Tom Lane authored
      pghackers proposal of 8-Nov.  All the existing cross-type comparison
      operators (int2/int4/int8 and float4/float8) have appropriate support.
      The original proposal of storing the right-hand-side datatype as part of
      the primary key for pg_amop and pg_amproc got modified a bit in the event;
      it is easier to store zero as the 'default' case and only store a nonzero
      when the operator is actually cross-type.  Along the way, remove the
      long-since-defunct bigbox_ops operator class.
      fa5c8a05
  20. Nov 02, 2003
  21. Nov 01, 2003
  22. Oct 31, 2003
  23. Oct 25, 2003
  24. Oct 18, 2003
  25. Oct 10, 2003
  26. Oct 02, 2003
  27. Sep 30, 2003
  28. Sep 29, 2003
  29. Sep 25, 2003
  30. Sep 19, 2003
    • Tom Lane's avatar
      Disallow foreign-key references from temp tables to permanent tables. · a13b0185
      Tom Lane authored
      Per recent discussion, this does not work because other backends can't
      reliably see tuples in a temp table and so cannot run the RI checks
      correctly.  Seems better to disallow this case than go back to accessing
      temp tables through shared buffers.  Also, disallow FK references to
      ON COMMIT DELETE ROWS tables.  We already caught this problem for normal
      TRUNCATE, but the path used by ON COMMIT didn't check.
      a13b0185
  31. Sep 16, 2003
Loading