1. 25 4月, 1999 1 次提交
  2. 24 4月, 1999 1 次提交
  3. 14 4月, 1999 1 次提交
  4. 13 4月, 1999 1 次提交
  5. 10 4月, 1999 1 次提交
  6. 02 4月, 1999 2 次提交
  7. 30 3月, 1999 1 次提交
  8. 29 3月, 1999 1 次提交
    • V
      1. Vacuum is updated for MVCC. · fdf6be80
      Vadim B. Mikheev 提交于
      2. Much faster btree tuples deletion in the case when first on page
         index tuple is deleted (no movement to the left page(s)).
      3. Remember blkno of new root page in BTPageOpaque of
         left/right siblings when root page is splitted.
      fdf6be80
  9. 24 3月, 1999 1 次提交
  10. 23 3月, 1999 1 次提交
  11. 18 3月, 1999 1 次提交
  12. 16 3月, 1999 2 次提交
  13. 15 3月, 1999 1 次提交
  14. 14 3月, 1999 1 次提交
    • B
      Hello, · f6a9ed04
      Bruce Momjian 提交于
      I've been working on the following TODO list item:
        * psql \d on index with char()/varchar() fields shows improper length
      
      I've attached a simple patch to fix this.
      
      -Ryan
      f6a9ed04
  15. 09 3月, 1999 1 次提交
    • M
      · f34240de
      Marc G. Fournier 提交于
      Changes to fix/improve the dynamic loading on NT
      
      From: Horak Daniel <horak@mmp.plzen-city.cz>
      f34240de
  16. 28 2月, 1999 1 次提交
  17. 25 2月, 1999 1 次提交
  18. 21 2月, 1999 1 次提交
    • M
      · 8c3e8a8a
      Marc G. Fournier 提交于
      From: Tatsuo Ishii <t-ishii@sra.co.jp>
      
      Ok. I made patches replacing all of "#if FALSE" or "#if 0" to "#ifdef
      NOT_USED" for current. I have tested these patches in that the
      postgres binaries are identical.
      8c3e8a8a
  19. 18 2月, 1999 1 次提交
  20. 14 2月, 1999 1 次提交
  21. 10 2月, 1999 1 次提交
  22. 08 2月, 1999 2 次提交
  23. 04 2月, 1999 2 次提交
  24. 02 2月, 1999 2 次提交
  25. 29 1月, 1999 2 次提交
  26. 24 1月, 1999 1 次提交
  27. 22 1月, 1999 1 次提交
    • B
      The following patch finishes primary key support. Previously, when · c91dbcc5
      Bruce Momjian 提交于
      a field was labelled as a primary key, the system automatically
      created a unique index on the field.  This patch extends it so
      that the index has the indisprimary field set.  You can pull a list
      of primary keys with the followiing select.
      
      SELECT pg_class.relname, pg_attribute.attname
          FROM pg_class, pg_attribute, pg_index
          WHERE pg_class.oid = pg_attribute.attrelid AND
              pg_class.oid = pg_index.indrelid AND
              pg_index.indkey[0] = pg_attribute.attnum AND
              pg_index.indisunique = 't';
      
      There is nothing in this patch that modifies the template database to
      set the indisprimary attribute for system tables.  Should they be
      changed or should we only be concerned with user tables?
      
      D'Arcy
      c91dbcc5
  28. 17 1月, 1999 1 次提交
  29. 11 1月, 1999 1 次提交
    • M
      · 3b3ffc8d
      Marc G. Fournier 提交于
      From: Magnus Hagander <mha@sollentuna.net>
      
      Here is a first patch to cleanup the backend side of libpq.
      This patch removes all external dependencies on the "Pfin" and "Pfout" that
      are declared in pqcomm.h. These variables are also changed to "static" to
      make sure.
      Almost all the change is in the handler of the "copy" command - most other
      areas of the backend already used the correct functions.
      This change will make the way for cleanup of the internal stuff there - now
      that all the functions accessing the file descriptors are confined to a
      single directory.
      3b3ffc8d
  30. 18 12月, 1998 2 次提交
  31. 15 12月, 1998 1 次提交
  32. 14 12月, 1998 2 次提交
    • M
      · 9396802f
      Marc G. Fournier 提交于
      more cleanups...of note, appendStringInfo now performs like sprintf(),
      where you state a format and arguments.  the old behavior required
      each appendStringInfo to have to have a sprintf() before it if any
      formatting was required.
      
      Also shortened several instances where there were multiple appendStringInfo()
      calls in a row, doing nothing more then adding one more word to the String,
      instead of doing them all in one call.
      9396802f
    • M
      · df1468e2
      Marc G. Fournier 提交于
      Many more cleanups...
      df1468e2