1. 24 Oct, 1999 2 commits
    • Tom Lane's avatar
      Add a notion of a 'catalog version number' that can indicate · eae456cd
      Tom Lane authored
      when an initdb-forcing change has been applied within a development cycle.
      PG_VERSION serves this purpose for official releases, but we can't bump
      the PG_VERSION number every time we make a change to the catalogs during
      development.  Instead, increase the catalog version number to warn other
      developers that you've made an incompatible change.  See my mail to
      pghackers for more info.
      eae456cd
    • Tom Lane's avatar
      Add comment explaining that this table doesn't do what you · 9efee18a
      Tom Lane authored
      might think ... in fact doesn't do much of anything at the moment ...
      9efee18a
  2. 23 Oct, 1999 3 commits
  3. 22 Oct, 1999 6 commits
  4. 21 Oct, 1999 5 commits
  5. 19 Oct, 1999 1 commit
  6. 18 Oct, 1999 7 commits
  7. 17 Oct, 1999 5 commits
  8. 16 Oct, 1999 3 commits
  9. 15 Oct, 1999 5 commits
    • Michael Meskes's avatar
      *** empty log message *** · 6fb3c3f7
      Michael Meskes authored
      6fb3c3f7
    • Bruce Momjian's avatar
      Fix typo in descriptions. · 06d95d94
      Bruce Momjian authored
      06d95d94
    • Bruce Momjian's avatar
      Clean up type descriptions. · e16db383
      Bruce Momjian authored
      e16db383
    • Bruce Momjian's avatar
      This patch implements ORACLE's COMMENT SQL command. · 7acc2377
      Bruce Momjian authored
      >From the ORACLE 7 SQL Language Reference Manual:
      -----------------------------------------------------
      COMMENT
      
      Purpose:
      
      To add a comment about a table, view, snapshot, or
      column into the data dictionary.
      
      Prerequisites:
      
      The table, view, or snapshot must be in your own
      schema
      or you must have COMMENT ANY TABLE system privilege.
      
      Syntax:
      
      COMMENT ON [ TABLE table ] |
                 [ COLUMN table.column] IS 'text'
      
      You can effectively drop a comment from the database
      by setting it to the empty string ''.
      -----------------------------------------------------
      
      Example:
      
      COMMENT ON TABLE workorders IS
         'Maintains base records for workorder information';
      
      COMMENT ON COLUMN workorders.hours IS
         'Number of hours the engineer worked on the task';
      
      to drop a comment:
      
      COMMENT ON COLUMN workorders.hours IS '';
      
      The current patch will simply perform the insert into
      pg_description, as per the TODO. And, of course, when
      the table is dropped, any comments relating to it
      or any of its attributes are also dropped. I haven't
      looked at the ODBC source yet, but I do know from
      an ODBC client standpoint that the standard does
      support the notion of table and column comments.
      Hopefully the ODBC driver is already fetching these
      values from pg_description, but if not, it should be
      trivial.
      
      Hope this makes the grade,
      
      Mike Mascari
      (mascarim@yahoo.com)
      7acc2377
    • Bruce Momjian's avatar
      Add S-tree doc for possible future use. · 55fa71a9
      Bruce Momjian authored
      55fa71a9
  10. 14 Oct, 1999 1 commit
  11. 13 Oct, 1999 2 commits