postgresql/src/backend/libpq
Tom Lane bec98a31c5 Revise aggregate functions per earlier discussions in pghackers.
There's now only one transition value and transition function.
NULL handling in aggregates is a lot cleaner.  Also, use Numeric
accumulators instead of integer accumulators for sum/avg on integer
datatypes --- this avoids overflow at the cost of being a little slower.
Implement VARIANCE() and STDDEV() aggregates in the standard backend.

Also, enable new LIKE selectivity estimators by default.  Unrelated
change, but as long as I had to force initdb anyway...
2000-07-17 03:05:41 +00:00
..
Makefile typo 2000-07-09 13:48:45 +00:00
README.SSL Add README.SSL 1999-09-27 03:16:09 +00:00
auth.c Expand secondary password file feature, so that you can use these 2000-07-04 16:32:01 +00:00
be-fsstubs.c Revise aggregate functions per earlier discussions in pghackers. 2000-07-17 03:05:41 +00:00
crypt.c Remove a bunch of unused configure tests, in particular cases where 2000-07-12 22:59:15 +00:00
hba.c Remove long-dead support for invoking queries from dynamically loaded 2000-07-08 03:04:41 +00:00
password.c Remove long-dead support for invoking queries from dynamically loaded 2000-07-08 03:04:41 +00:00
pg_hba.conf.sample Update pg_hba.conf with more examples 2000-05-30 17:39:56 +00:00
pg_ident.conf.sample Move YACC and YFLAGS into the template files 1997-04-04 11:23:15 +00:00
pqcomm.c Remove long-dead support for invoking queries from dynamically loaded 2000-07-08 03:04:41 +00:00
pqformat.c Remove a bunch of unused configure tests, in particular cases where 2000-07-12 22:59:15 +00:00
pqpacket.c Ye-old pgindent run. Same 4-space tabs. 2000-04-12 17:17:23 +00:00
pqsignal.c Add SIGFPE to list of signals never to block. #ifdef all signals in 2000-06-29 02:17:42 +00:00
util.c Remove long-dead support for invoking queries from dynamically loaded 2000-07-08 03:04:41 +00:00

README.SSL

>From the servers perspective:


  Receives StartupPacket
           |
           |
 (Is SSL_NEGOTIATE_CODE?) -----------  Normal startup
           |                  No
           |
           | Yes
           |
           |
 (Server compiled with USE_SSL?) ------- Send 'N'
           |                       No        |
           |                                 |
           | Yes                         Normal startup
           |
           |
        Send 'S'
           |
           |
      Establish SSL
           |
           |
      Normal startup
     




>From the clients perspective (v6.6 client _with_ SSL):


      Connect
         |
         |
  Send packet with SSL_NEGOTIATE_CODE
         |
         |
  Receive single char  ------- 'S' -------- Establish SSL
         |                                       |
         | '<else>'                              |
         |                                  Normal startup
         |
         |
   Is it 'E' for error  ------------------- Retry connection
         |                  Yes             without SSL
         | No
         |
   Is it 'N' for normal ------------------- Normal startup
         |                  Yes
         |
   Fail with unknown