Skip to content
Snippets Groups Projects
  1. Jan 06, 2001
  2. 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
  3. Jan 04, 2001
  4. Jan 03, 2001
    • Tom Lane's avatar
      New file format for COPY BINARY, in accordance with pghackers discussions · 676cf18c
      Tom Lane authored
      of early December 2000.  COPY BINARY is now TOAST-safe.
      676cf18c
    • Bruce Momjian's avatar
      Update TODO list. · 39f987c5
      Bruce Momjian authored
      Index: TODO
      ===================================================================
      RCS file: /home/projects/pgsql/cvsroot/pgsql/doc/TODO,v
      retrieving revision 1.311
      diff -r1.311 TODO
      3c3
      < Last updated:		Tue Jan  2 21:23:11 EST 2001
      ---
      > Last updated:		Wed Jan  3 01:56:41 EST 2001
      10c10
      < A dash(-) marks changes that will appear in the upcoming 7.1 release.
      ---
      > A dash (-) marks changes that will appear in the upcoming 7.1 release.
      23c23
      < * -Creating index of TIMESTAMP & RELTIME fails, or rename to DATETIME(Thomas)
      ---
      > * -Creating index of TIMESTAMP & RELTIME fails, or rename to DATETIME (Thomas)
      35c35
      < * -Views containing aggregates sometimes fail(Jan)
      ---
      > * -Views containing aggregates sometimes fail (Jan)
      37,38c37,38
      <   duplicates(inherit)
      < * -Disallow LOCK on view(Mark Hollomon)
      ---
      >   duplicates (inherit)
      > * -Disallow LOCK on view (Mark Hollomon)
      58,60c58,60
      < * -Add OUTER joins, left and right[outer](Tom, Thomas)
      < * -Allow long tuples by chaining or auto-storing outside db (TOAST)(Jan)
      < * Fix memory leak for expressions[memory](Tom?)
      ---
      > * -Add OUTER joins, left and right[outer] (Tom, Thomas)
      > * -Allow long tuples by chaining or auto-storing outside db (TOAST) (Jan)
      > * Fix memory leak for expressions[memory] (Tom?)
      70c70
      < * Allow row re-use without vacuum(Vadim)
      ---
      > * Allow row re-use without vacuum (Vadim)
      74c74
      < * More access control over who can create tables and use locks(Karel)
      ---
      > * More access control over who can create tables and use locks (Karel)
      92c92
      < 	o -Fix large object mapping scheme, own typeid or reltype(Peter)
      ---
      > 	o -Fix large object mapping scheme, own typeid or reltype (Peter)
      97c97
      < * Fix improper masking of some inet/cidr types [cidr]
      ---
      > * -Fix improper masking of some inet/cidr types [cidr]
      113c113
      < * Get BIT type working
      ---
      > * -Get BIT type working
      119c119
      < * Update macaddr manufacturer numbers, or remove the function macaddr_manuf()
      ---
      > * -Update macaddr manufacturer numbers, or remove the function macaddr_manuf()
      147c147
      < * -Add ALTER TABLE ALTER COLUMN feature(Peter E)
      ---
      > * -Add ALTER TABLE ALTER COLUMN feature (Peter E)
      157c157
      < * Auto-destroy sequence on DROP of table with SERIAL(Ryan)
      ---
      > * Auto-destroy sequence on DROP of table with SERIAL (Ryan)
      166a167
      > * Allow INSERT INTO tab (col1, ..) VALUES (val1, ..), (val2, ..)
      172d172
      < * Allow INSERT INTO tab (col1, ..) VALUES (val1, ..), (val2, ..)
      176c176
      < * Make NULL's come out at the beginning or end depending on the
      ---
      > * Make NULL's come out at the beginning or end depending on the
      220c220
      < * Certain indexes will not shrink, i.e. oid indexes with many inserts(Vadim)
      ---
      > * Certain indexes will not shrink, i.e. oid indexes with many inserts (Vadim)
      226c226
      <   with after-row images(Vadim) [logging](Vadim)
      ---
      >   with after-row images (Vadim) [logging]
      232c232
      < * -Redesign the function call interface to handle NULLs better[function](Tom)
      ---
      > * -Redesign the function call interface to handle NULLs better[function] (Tom)
      239c239
      < * Encrpyt passwords in pg_shadow table using MD5(Vince)
      ---
      > * Encrpyt passwords in pg_shadow table using MD5 (Vince)
      298a299,300
      > * Create a transaction processor to aid in persistent connections and
      >   connection pooling
      307c309
      < * Remove SET KSQO option now that OR processing is improved(Tom)
      ---
      > * Remove SET KSQO option now that OR processing is improved (Tom)
      39f987c5
    • Bruce Momjian's avatar
      Update TODO list. · b1cc6464
      Bruce Momjian authored
      Index: TODO
      ===================================================================
      RCS file: /home/projects/pgsql/cvsroot/pgsql/doc/TODO,v
      retrieving revision 1.310
      diff -r1.310 TODO
      3c3
      < Last updated:		Wed Dec 27 00:44:44 EST 2000
      ---
      > Last updated:		Tue Jan  2 21:23:11 EST 2001
      310a311
      > * Allow libedit to be used in place of libreadline
      b1cc6464
  5. Jan 02, 2001
  6. Dec 30, 2000
  7. Dec 28, 2000
  8. Dec 27, 2000
    • Bruce Momjian's avatar
      Update TODO list. · 97799fc4
      Bruce Momjian authored
      Index: TODO
      ===================================================================
      RCS file: /home/projects/pgsql/cvsroot/pgsql/doc/TODO,v
      retrieving revision 1.309
      diff -r1.309 TODO
      3c3
      < Last updated:		Sat Dec 23 09:48:47 EST 2000
      ---
      > Last updated:		Wed Dec 27 00:44:44 EST 2000
      60a61,70
      > * Add replication of distributed databases [replication]
      > 	o automatic fallover
      > 	o load balancing
      > 	o master/slave replication
      > 	o multi-master replication
      > 	o partition data across servers
      > 	o sample implementation in contrib/rserv
      > 	o queries across databases or servers (two-phase commit)
      > * Point-in-time data recovery using backup and write-ahead log
      > * Allow row re-use without vacuum(Vadim)
      112c122
      < * Make file in/out interface to TOAST columns
      ---
      > * Make binary/file in/out interface for TOAST columns
      122a133
      > * Automatically create rules on views so they are updateable, per SQL92
      173c184
      < * allow psql \d to show temporary table schema
      ---
      > * allow psql \d to show temporary table structure
      195d205
      < * Add replication of distributed databases [replication]
      200a211,212
      > * Incremental backups
      > * Allow SQL92 schemas
      205d216
      < * Allow row re-use without vacuum(Vadim)
      229a241
      > * Allow Java server-side programming
      278a291
      > * Automatically keep clustering on a table
      329d341
      < ›5~
      97799fc4
  9. Dec 26, 2000
  10. Dec 23, 2000
  11. Dec 22, 2000
  12. Dec 21, 2000
    • Peter Eisentraut's avatar
      Get rid of the little "v"s in front of version numbers, substituting the · b2145e93
      Peter Eisentraut authored
      full word "version" where appropriate.
      b2145e93
    • Peter Eisentraut's avatar
      Updates · 8f89113d
      Peter Eisentraut authored
      8f89113d
    • Bruce Momjian's avatar
      Update TODO list. · 84f26edf
      Bruce Momjian authored
      Index: TODO
      ===================================================================
      RCS file: /home/projects/pgsql/cvsroot/pgsql/doc/TODO,v
      retrieving revision 1.307
      diff -r1.307 TODO
      3c3
      < Last updated:		Thu Dec 21 14:12:04 EST 2000
      ---
      > Last updated:		Thu Dec 21 14:45:00 EST 2000
      32d31
      < * Prevent BETWEEN from using duplicate nodes
      84f26edf
    • Bruce Momjian's avatar
      Update TODO list. · 7f72b31b
      Bruce Momjian authored
      Index: TODO
      ===================================================================
      RCS file: /home/projects/pgsql/cvsroot/pgsql/doc/TODO,v
      retrieving revision 1.306
      diff -r1.306 TODO
      3c3
      < Last updated:		Fri Dec 15 17:44:57 EST 2000
      ---
      > Last updated:		Thu Dec 21 14:12:04 EST 2000
      31a32
      > * Prevent BETWEEN from using duplicate nodes
      7f72b31b
    • Bruce Momjian's avatar
      >openssl req -new -text -out cert.req (you will have to enter a password) · 2905a2c5
      Bruce Momjian authored
        >mv privkey.pem cert.pem.pw
        >openssl rsa -in cert.pem.pw -out cert.pem  (this removes the password)
        >openssl req -x509 -in cert.req -text -key cert.pem -out cert.cert
      
      then
      
        cp cert.pem $PGDATA/server.key
        cp cert.cert $PGDATA/server.crt
      
      Thank you; this works.
      
      Oliver Elphick
      2905a2c5
    • Bruce Momjian's avatar
      responce->response · 1db9cce3
      Bruce Momjian authored
      Alfred Perlstein
      1db9cce3
  13. Dec 20, 2000
Loading