- 12 Jan, 2003 8 commits
-
-
Tom Lane authored
-
Bruce Momjian authored
-
Peter Eisentraut authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Tom Lane authored
more to be done yet, but this is a good start.
-
Bruce Momjian authored
-
- 11 Jan, 2003 10 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
supported.
-
Tom Lane authored
direction on HP-UX; our former approach has been obsolete since HPUX 9. Giles Lean
-
Bruce Momjian authored
-
Tatsuo Ishii authored
-
Bruce Momjian authored
> > I'd suggest that the runtime.sgml description explicitly say "values of > at least a few thousand are recommended for production installations". Neil Conway
-
Bruce Momjian authored
Manfred Koizar
-
Bruce Momjian authored
RELEASE_CHANGES. Manfred Koizar
-
Bruce Momjian authored
SET_TRANSACTION.
-
Peter Eisentraut authored
-
- 10 Jan, 2003 7 commits
-
-
Tom Lane authored
shared by nodeGroup, nodeAgg, and soon nodeSubplan.
-
Tom Lane authored
-
Peter Eisentraut authored
-
Peter Eisentraut authored
command with arguments.
-
Tom Lane authored
Simplify SubLink by storing just a List of operator OIDs, instead of a list of incomplete OpExprs --- that was a bizarre and bulky choice, with no redeeming social value since we have to build new OpExprs anyway when forming the plan tree.
-
Peter Eisentraut authored
Currently, only RESTRICT is allowed.
-
Peter Eisentraut authored
-
- 09 Jan, 2003 10 commits
-
-
Tom Lane authored
'NOT (x IN (subselect))', that is 'NOT (x = ANY (subselect))', rather than 'x <> ALL (subselect)' as we formerly did. This opens the door to optimizing NOT IN the same way as IN, whereas there's no hope of optimizing the expression using <>. Also, convert 'x <> ALL (subselect)' to the NOT(IN) style, so that the optimization will be available when processing rules dumped by older Postgres versions. initdb forced due to small change in SubLink node representation.
-
Tom Lane authored
-
Tom Lane authored
by having to include miscadmin.h into other header files.
-
Peter Eisentraut authored
interfaces.
-
Tom Lane authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Tom Lane authored
per gripe from Csaba Nagy. There is still potential for platform-specific behavior for values that are exactly halfway between integers, but at least we now get the expected answer for all other cases.
-
Bruce Momjian authored
-
Tom Lane authored
causes interval rounding not to work as expected in 7.3, for example SELECT '18:17:15.6'::interval(0) does not round the value. I did not force initdb, but one is needed to install the added row.
-
- 08 Jan, 2003 5 commits
-
-
Bruce Momjian authored
-
Tom Lane authored
-
Bruce Momjian authored
believe I didn't notice this before -- once 64k was sent to/from the server the client would crash. Basicly, in 7.3 the server SSL code set the initial state to "about to renegotiate" without actually starting the renegotiation. In addition, the server and client didn't properly handle the SSL_ERROR_WANT_(READ|WRITE) error. This is fixed in the second patch. Nathan Mueller
-
Bruce Momjian authored
first, that I missed when checking over 7.3.1, was that the client method was switched to SSLv23 along with the server. The SSLv23 client method does SSLv2 by default, but can also understand SSLv3. In our situation the SSLv2 backwords compatibility is really only needed on the server. This is the first patch. The last thing is that I found a way for the server to understand SSLv2 HELLO messages (sent by pre-7.3 clients) but then get them to talk SSLv3. This is the last one. Nathan Mueller
-
Bruce Momjian authored
> The big problem is that while pg_dump's dump_trigger() looks at > tginitdeferred and dumps accordingly, pg_get_constraintdef doesn't look > at tginitdeferred, and therefore doesn't record the requirement as part > of ALTER TABLE ADD CONSTRAINT. pg_get_constraintdef should probably be looking at condeferrable and condeferred in the pg_constraint row it's looking at. Maybe something like the attached. (Added, output only non-default values.) Stephan Szabo
-