Skip to content
Snippets Groups Projects
  1. Mar 05, 2001
  2. Mar 03, 2001
  3. Feb 20, 2001
  4. Feb 18, 2001
  5. Feb 15, 2001
  6. Feb 11, 2001
  7. Feb 10, 2001
  8. Feb 09, 2001
  9. Feb 08, 2001
  10. Feb 07, 2001
  11. Feb 04, 2001
  12. Feb 03, 2001
  13. Jan 27, 2001
  14. Jan 24, 2001
  15. Jan 20, 2001
  16. Jan 14, 2001
  17. Jan 13, 2001
  18. Jan 12, 2001
  19. Jan 08, 2001
  20. Jan 06, 2001
  21. Jan 05, 2001
    • Tom Lane's avatar
      Remove not-really-standard implementation of CREATE TABLE's UNDER clause, · 2fb6cc90
      Tom Lane authored
      and revert documentation to describe the existing INHERITS clause
      instead, per recent discussion in pghackers.  Also fix implementation
      of SQL_inheritance SET variable: it is not cool to look at this var
      during the initial parsing phase, only during parse_analyze().  See
      recent bug report concerning misinterpretation of date constants just
      after a SET TIMEZONE command.  gram.y really has to be an invariant
      transformation of the query string to a raw parsetree; anything that
      can vary with time must be done during parse analysis.
      2fb6cc90
  22. Jan 03, 2001
  23. Dec 30, 2000
  24. Dec 26, 2000
  25. Dec 20, 2000
  26. Dec 19, 2000
  27. Dec 12, 2000
    • Bruce Momjian's avatar
      In 'Joins between classes' in Section 5 of the tutorial we have, in · 36da236e
      Bruce Momjian authored
      the first paragraph:
      
          As an example, say we wish to find all the records that
          are in the  temperature  range  of  other records. In
          effect, we need to compare the temp_lo and temp_hi
          attributes of each EMP instance to the temp_lo and
          temp_hi  attributes of all other EMP instances.
      
      I believe that EMP should read WEATHER, as the example query that
      follows joins WEATHER to itself.
      
      EMP is often used in Oracle examples.
      
      Regards,
      Graham
      
      Other RULE cleanups
      36da236e
    • Tom Lane's avatar
      Revise SELECT reference page for outer joins, subselect in FROM, · 1045304a
      Tom Lane authored
      ISO-compliant UNION/INTERSECT/EXCEPT.  Revise discussion of rule
      rewriter to reflect new subselect-in-FROM implementation of views.
      Miscellaneous other cleanups.
      1045304a
  28. Dec 10, 2000
  29. Dec 08, 2000
  30. Dec 01, 2000
  31. Nov 29, 2000
    • Tom Lane's avatar
      Significant cleanups in SysV IPC handling (shared mem and semaphores). · c715fdea
      Tom Lane authored
      IPC key assignment will now work correctly even when multiple postmasters
      are using same logical port number (which is possible given -k switch).
      There is only one shared-mem segment per postmaster now, not 3.
      Rip out broken code for non-TAS case in bufmgr and xlog, substitute a
      complete S_LOCK emulation using semaphores in spin.c.  TAS and non-TAS
      logic is now exactly the same.
      When deadlock is detected, "Deadlock detected" is now the elog(ERROR)
      message, rather than a NOTICE that comes out before an unhelpful ERROR.
      c715fdea
  32. Nov 25, 2000
  33. Nov 24, 2000
    • Peter Eisentraut's avatar
      Make SET SESSION CHARACTERISTICS compliant with SQL 99. Remove redundant, · 5b00ea9e
      Peter Eisentraut authored
      non-standard clauses.  Allow CHARACTERISTICS as unquoted identifier.
      Merge related reference pages.
      5b00ea9e
    • Peter Eisentraut's avatar
      Revive Reference Manual, remove reference pages from User's Guide. · b2e76d57
      Peter Eisentraut authored
      Make version.sgml the central place for updating version numbers in the
      documentation.  Document titles now contain the version number of the
      release they belong to.
      
      filelist.sgml is the central (and only) place to declare system entities
      (i.e., sgml files).  No longer a need to declare them in each document
      header.
      
      There is no longer any need to maintain duplicate chapter lists in
      postgres.sgml and user/admin/etc.sgml, everything is build from the same
      sources.  Some parameter entities allow for different text to be included
      when the integrated or a single doc set is generated, which eliminates the
      problems that had caused this to fail in the past.
      b2e76d57
  34. Nov 22, 2000
Loading