1. 17 Dec, 2005 3 commits
  2. 16 Dec, 2005 4 commits
  3. 14 Dec, 2005 2 commits
  4. 12 Dec, 2005 4 commits
    • Bruce Momjian's avatar
      f82e2bae
    • Bruce Momjian's avatar
      59b89e9c
    • Bruce Momjian's avatar
      Update wording, query -> statement: · baf4e187
      Bruce Momjian authored
      < * %Allow pooled connections to list all prepared queries
      > * %Allow pooled connections to list all prepared statements
      28c28
      <   the queries prepared in the current session.
      >   the statements prepared in the current session.
      143c143
      < 	  o Allow a warm standby system to also allow read-only queries
      > 	  o Allow a warm standby system to also allow read-only statements
      404c404
      < * Add GUC to issue notice about queries that use unjoined tables
      > * Add GUC to issue notice about statements that use unjoined tables
      490c490
      < 	  Another idea would be to allow actual SELECT queries in a COPY.
      > 	  Another idea would be to allow actual SELECT statements in a COPY.
      554c554
      < 	o Allow function argument names to be queries from PL/PgSQL
      > 	o Allow function argument names to be statements from PL/PgSQL
      591c591
      < 	o Improve psql's handling of multi-line queries
      > 	o Improve psql's handling of multi-line statements
      < 	  Currently, while \e saves a single query as one entry, interactive
      < 	  queries are saved one line at a time.  Ideally all queries
      > 	  Currently, while \e saves a single statement as one entry, interactive
      > 	  statements are saved one line at a time.  Ideally all statements
      665c665
      < 	o Allow query results to be automatically batched to the client
      > 	o Allow statement results to be automatically batched to the client
      667c667
      < 	  Currently, all query results are transfered to the libpq
      > 	  Currently, all statement results are transfered to the libpq
      672c672
      < 	  One complexity is that a query like SELECT 1/col could error
      > 	  One complexity is that a statement like SELECT 1/col could error
      739c739
      < * Allow queries across databases or servers with transaction
      > * Allow statements across databases or servers with transaction
      <   inheritance, allow it to work for UPDATE and DELETE queries, and allow
      <   it to be used for all queries with little performance impact
      >   inheritance, allow it to work for UPDATE and DELETE statements, and allow
      >   it to be used for all statements with little performance impact
      876c876
      < * Consider automatic caching of queries at various levels:
      > * Consider automatic caching of statements at various levels:
      947c947
      <   a single session using multiple threads to execute a query faster.
      >   a single session using multiple threads to execute a statement faster.
      1025c1025
      < * Log queries where the optimizer row estimates were dramatically
      > * Log statements where the optimizer row estimates were dramatically
      1146c1146
      < 	  of result sets using new query protocol
      > 	  of result sets using new statement protocol
      baf4e187
    • Teodor Sigaev's avatar
      Improve support of multibyte encoding: · cb4ea994
      Teodor Sigaev authored
      - tsvector_(in|out)
      - tsquery_(in|out)
      - to_tsvector
      - to_tsquery, plainto_tsquery
      - 'simple' dictionary
      cb4ea994
  5. 11 Dec, 2005 3 commits
  6. 10 Dec, 2005 2 commits
  7. 09 Dec, 2005 12 commits
  8. 08 Dec, 2005 10 commits
    • Bruce Momjian's avatar
      Release note wording improvements. · 34848052
      Bruce Momjian authored
      34848052
    • Bruce Momjian's avatar
      Wrap UTF-8 paragraph. · 8c09ba86
      Bruce Momjian authored
      8c09ba86
    • Bruce Momjian's avatar
      Update wording of translation bug item. · f2946c71
      Bruce Momjian authored
      f2946c71
    • Bruce Momjian's avatar
      Update for 8.1.1. · fb52a547
      Bruce Momjian authored
      fb52a547
    • Bruce Momjian's avatar
      Update release notes for 8.1.1. · 4b095113
      Bruce Momjian authored
      4b095113
    • Bruce Momjian's avatar
      Add Teodor: · d22ec676
      Bruce Momjian authored
      > * Teodor is Teodor Sigaev <teodor@sigaev.ru>
      d22ec676
    • Bruce Momjian's avatar
      Remove a few people: · 0fba659e
      Bruce Momjian authored
      < * Claudio is Claudio Natoli <claudio.natoli@memetrics.com>
      1166d1164
      < * Hiroshi is Hiroshi Inoue <Inoue@tpf.co.jp>
      0fba659e
    • Bruce Momjian's avatar
      FAQ_AIX in 8.1.0 contains outdated information about how to deal with · cd5fa5a5
      Bruce Momjian authored
      postgres problems due to readline.  The attached patch replaces that
      section of it with better ways of handling the problem.
      
      Seneca Cunningham
      cd5fa5a5
    • Bruce Momjian's avatar
      there's a paragraph in the ALTER TABLE reference page that reads: · 04db9d25
      Bruce Momjian authored
      DROP CONSTRAINT
      
          This form drops constraints on a table. Currently, constraints on tables
          are not required to have unique names, so there may be more than one
          constraint matching the specified name. All matching constraints will be
          dropped.
      
      To my knowledge, it is no longer possible to create constraints with the
      same name for the same relation. When you create a constraint and specify
      the same name explictly, an error is raised. Implicit constraint creation
      won't choose an existing name either and up to now you could not rename a
      constraint. Renaming works with the patch I sent in a few hours ago but this
      patch as well won't allow constraints with identical names on the same
      relation.
      
      The attached patch thus removes the note in the docs.
      
      Joachim Wieland
      04db9d25
    • Bruce Momjian's avatar
      > 1) I'm proposing a patch to do the DROP FUNCTION argument tab completion. · c03aa1f9
      Bruce Momjian authored
      > Now, the arguments of the drop function can be tab completed. for example
      >
      > drop function strpos (
      > <press tab>
      > drop FUNCTION strpos (text, text)
      >
      > or:
      >
      > wsdb=# drop FUNCTION length (
      > bit)        bytea)      character)  lseg)       path)       text)
      > <press c>
      > wsdb# DROP FUNCTION length ( character)
      >
      > I think that this patch should be rather useful. At it least I hate
      > always to type all the arguments of the dropped functions.
      >
      > 2) Also some fixes applied for the
      > CREATE INDEX syntax
      >
      > now the parenthesises are inserted by tab pressing.
      > suppose I have the table q3c:
      
      Sergey E. Koposov
      c03aa1f9