1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-27 12:41:57 +03:00
Commit Graph

7216 Commits

Author SHA1 Message Date
aa09aaabff Back-patch fix for erroneous use of strcmp(). 2000-09-23 21:32:55 +00:00
89ebadcd77 Back-patch fix for erroneous selectivity of not-equals. 2000-09-23 21:27:05 +00:00
5a5531a3f4 Apply Jeroen van Vianen's patch for failure to check heap_openr failure
in RI triggers.  This is fixed in another way in current sources, but
might as well apply this patch to REL7_0 branch so that 7.0.3 need not
suffer this crash.
2000-09-23 21:15:26 +00:00
3017000115 Back-patch fix to copy sub-Query nodes before planning them. This
fixes problems with subselects appearing in contexts like COALESCE or
BETWEEN, where parser will make multiple links to same subexpression.
2000-09-23 21:00:05 +00:00
c3aab02939 Back-patch fix to remove bogus use of int4out(). 2000-09-23 19:30:04 +00:00
01e664025e Back-patch fix for erroneous free() of getpwuid() result. 2000-09-23 19:17:06 +00:00
8e9ad61397 Cancel request while waiting for a lock should try to wake
up sleeping processes.
2000-09-20 07:20:27 +00:00
a455ca4812 Back-patch fix to ensure that VACUUM always calls FlushRelationBuffers. 2000-09-19 21:01:04 +00:00
c33ea1e8b6 Allow PL/pgSQL accept non ascii identifiers 2000-09-15 12:08:56 +00:00
16f1cfcb87 Back-patch fix for bogus plans involving non-mark/restorable plan
as inner plan of a mergejoin.
2000-09-08 02:11:33 +00:00
4fc8465398 Fix psql crash. If MULTIBYTE is enabled, \l+ dumps core due to
SQL buffer in listAllDbs is just too small.
2000-09-07 04:53:32 +00:00
dae17e5ad1 Back-patch fix to ensure we abort any open transaction at backend exit. 2000-08-30 21:19:32 +00:00
a2661b57e1 oops, in v7.x its USE_SYSLOG, not ENABLE_SYSLOG
modify config.h.in so that it gets set by configure properly
2000-08-28 20:27:32 +00:00
6b359b5e58 backpatch the --enable-syslog functionality to REL7_0 branch 2000-08-28 20:04:39 +00:00
91319022c4 Back-patch primary fix for planner recursion bug. 2000-07-27 23:53:29 +00:00
daee6ca585 SELECT ... FOR UPDATE neglects duplicate key checking.
patches submitted by Hiroshi Inoue.
2000-07-26 13:09:30 +00:00
0a77af6727 Backpatch backwards-index-scan fix. 2000-07-13 05:52:18 +00:00
da1017659a Back-patch StrNCpy fix. 2000-07-07 21:29:57 +00:00
d914334dd6 Back-patch COPY WITH OIDS leak fix. 2000-06-28 06:13:01 +00:00
97f41dabd3 Update FAQ. 2000-06-24 01:51:33 +00:00
55742d4b1c Back-patch large-object fix. 2000-06-15 06:10:27 +00:00
c545ec54f8 Backpatch jdbc fixes into 7.0.X. 2000-06-15 04:12:41 +00:00
3a82b67b22 Fix markup to allow doc building. 2000-06-14 13:18:59 +00:00
2d1433517e Brand 7.1 release. Also update jdbc version in release branch. 2000-06-12 22:37:07 +00:00
cb9221a820 update developers faq 2000-06-10 02:05:55 +00:00
d9bb8e7590 Update bsdi faq. 2000-06-09 16:35:54 +00:00
ba7bf95050 Update FAQ. 2000-06-09 12:20:59 +00:00
51a1820ede Backpatch SearchSysCacheTupleCopy fix for init_fcache. 2000-06-06 17:45:05 +00:00
91ccad9f89 Back-patch typeTypeName() fix into REL7_0. 2000-06-06 16:51:24 +00:00
e261306b43 Update install for upgraders. REL7_0_2 2000-06-05 17:02:27 +00:00
d57dcbf33e Fix error message wording 2000-06-05 11:13:55 +00:00
48f25ca5a4 Update for 7.0.2. 2000-06-05 10:59:19 +00:00
68f7531dbd update 2000-06-02 16:34:42 +00:00
924d85bbbf Update faq's. 2000-06-02 02:28:13 +00:00
ce4605bcbf Add fix to index length 2000-06-02 01:26:29 +00:00
30d17f3195 Lexer defended us against overlength plain identifiers, but not against
overlength quoted identifiers.  Death and destruction ensue...
2000-06-01 22:23:10 +00:00
490c151237 Update 7.0.1 for Tatsuo 2000-06-01 06:03:49 +00:00
e787d2ef4f Mention pg_upgrade 2000-06-01 05:58:56 +00:00
78cb38ccfb Fixups for 7.0.1 2000-06-01 05:14:35 +00:00
7192cbb07d Back-patch fix to recognize clause pairs involving Params
as being range queries.
2000-05-31 15:43:31 +00:00
dbb7553bc9 Update pg_hba.conf with more examples 2000-05-30 17:40:14 +00:00
6a8dab2981 Update pg_hba.conf.sample with better examples and descriptions 2000-05-30 17:18:43 +00:00
27266b7071 Copy pg_ident.conf.sample into /lib directory. Rename USERAUTH to
AUTHTYPE in config file.  Patch both branches.
2000-05-30 16:36:34 +00:00
4fd3e0dde9 Back-patch tz name length fixes into REL7_0. 2000-05-29 19:19:07 +00:00
e193acd801 array_map() needs to guard against a NULL input array. This problem
should go away in 7.1 with the new fmgr, but for 7.0.1 ...
2000-05-28 17:43:34 +00:00
4b72779f7b fastpath neglected to pass a valid isNull flag to the function being
called.  We hadn't noticed this because C-coded functions mostly don't
pay attention to isNull anyway ... but plpgsql functions sure do ...
This is fixed in another way for 7.1, but 7.0.1 needs this patch.
2000-05-28 15:40:25 +00:00
67f6b333ac Make EUC_CN support more robust. 2000-05-28 04:57:06 +00:00
46645b9378 Change date of documents. 2000-05-28 04:28:55 +00:00
2e4072e115 fix typo 2000-05-28 02:02:07 +00:00
3a38bb5bed Add README.kerbros 2000-05-27 03:42:49 +00:00