1. 31 May, 2005 6 commits
  2. 30 May, 2005 16 commits
  3. 29 May, 2005 9 commits
  4. 28 May, 2005 3 commits
    • Tom Lane's avatar
      Bgwriter should PANIC if it runs out of memory for pending-fsyncs · f8a05160
      Tom Lane authored
      hash table.  This is a pretty unlikely scenario, since the table
      should be tiny, but we can't guarantee continued correct operation
      if it does occur.  Spotted by Qingqing Zhou.
      f8a05160
    • Tom Lane's avatar
      get_expr_result_type has to be prepared to pull type information · 6d9ee031
      Tom Lane authored
      from a RECORD Const node, because that's what it may be faced with
      after constant-folding of a function returning RECORD.  Per example
      from Michael Fuhr.
      6d9ee031
    • Bruce Momjian's avatar
      Remove: · 70f32049
      Bruce Momjian authored
      <
      < * Add XML output to pg_dump and COPY
      <
      <   We already allow XML to be stored in the database, and XPath queries
      <   can be used on that data using /contrib/xml2. It also supports XSLT
      <   transformations.
      70f32049
  5. 27 May, 2005 6 commits
    • Tom Lane's avatar
      Arrange to cache fmgr lookup information for an index's access method · 32e8fc4a
      Tom Lane authored
      routines in the index's relcache entry, instead of doing a fresh fmgr_info
      on every index access.  We were already doing this for the index's opclass
      support functions; not sure why we didn't think to do it for the AM
      functions too.  This supersedes the former method of caching (only)
      amgettuple in indexscan scan descriptors; it's an improvement because the
      function lookup can be amortized across multiple statements instead of
      being repeated for each statement.  Even though lookup for builtin
      functions is pretty cheap, this seems to drop a percent or two off some
      simple benchmarks.
      32e8fc4a
    • Bruce Momjian's avatar
      Update Farsi FAQ. · dd67cf36
      Bruce Momjian authored
      Mahmoud Taghizadeh
      dd67cf36
    • Bruce Momjian's avatar
      Add: · 42319310
      Bruce Momjian authored
      > * Consider sorting hash buckets so entries can be found using a binary
      >   search, rather than a linear scan
      > * In hash indexes, consider storing the hash value with or instead
      >   of the key itself
      42319310
    • Bruce Momjian's avatar
      Add: · 770156e1
      Bruce Momjian authored
      > * Add the features of packages
      > 	o  Make private objects accessable only to objects in the same schema
      > 	o  Allow current_schema.objname to access current schema objects
      > 	o  Add session variables
      > 	o  Allow nested schemas
      770156e1
    • Bruce Momjian's avatar
      Display only 9 subsecond digits instead of 10 for time values, for · d4b50caf
      Bruce Momjian authored
      consistency and to prevent rounding for days < 30.  Also round off all
      trailing zeros, rather than leaving an even number of digits.
      d4b50caf
    • Bruce Momjian's avatar
      Re-order 'else' clause for clarity. · 5dafb69e
      Bruce Momjian authored
      5dafb69e