Peter Eisentraut
e25058bb14
Update keyword list for 7.2 release.
2001-11-02 19:13:09 +00:00
Tom Lane
8a069abd18
Fix pg_pwd caching mechanism, which was broken by changes to fork
...
postmaster children before client auth step. Postmaster now rereads
pg_pwd on receipt of SIGHUP, the same way that pg_hba.conf is handled.
No cycles need be expended to validate password cache validity during
connection startup.
2001-11-02 18:39:57 +00:00
Tom Lane
6babf6eab7
Suppress compiler warning (only seen in MULTIBYTE case).
2001-11-02 17:00:18 +00:00
Tom Lane
7d05310828
Fix problem reported by Alex Korn: if a relation has been dropped and
...
recreated since the start of our transaction, our first reference to it
errored out because we'd try to reuse our old relcache entry for it.
Do this by accepting SI inval messages just before relcache search in
heap_openr, so that dead relcache entries will be flushed before we
search. Also, break heap_open/openr into two pairs of routines,
relation_open(r) and heap_open(r). The relation_open routines make
no tests on relkind and so can be used to open anything that has a
pg_class entry. The heap_open routines are wrappers that add a relkind
test to preserve their established behavior. Use the relation_open
routines in several places that had various kluge solutions for opening
rels that might be either heap or index rels.
Also, remove the old 'heap stats' code that's been superseded by Jan's
stats collector, and clean up some inconsistencies in error reporting
between the different types of ALTER TABLE.
2001-11-02 16:30:29 +00:00
Michael Meskes
5d4b94085e
Sync parser yet again.
2001-11-02 15:04:03 +00:00
Bruce Momjian
36aa85dcd3
Update TODO list.
2001-11-01 20:06:59 +00:00
Tom Lane
3c9b549a75
Minor code cleanups.
2001-11-01 18:10:48 +00:00
Tom Lane
7663e6bb70
Reject tabs and linefeeds in usernames and passwords that are being
...
stored in pg_pwd, to guard against failures of the sort observed by
Tom Yackel. Note: in the case of encrypted passwords this is no
restriction, since the string we are interested in is the MD5 hash.
2001-11-01 18:09:58 +00:00
Tom Lane
bdea97ea95
Add missing #include.
2001-11-01 06:17:01 +00:00
Tom Lane
4877c59217
Suppress trivial compiler warning.
2001-11-01 05:45:28 +00:00
Tom Lane
fe61b6cc4a
Fix broken markup.
2001-11-01 04:48:00 +00:00
Tom Lane
d14147de77
Copy-editing.
2001-11-01 04:07:29 +00:00
Barry Lind
8304a395f9
minor improvements on Dave's last checkin
2001-11-01 01:10:13 +00:00
Hiroshi Inoue
01da8e918d
Suppress a compiler warning.
2001-10-31 23:54:02 +00:00
Peter Eisentraut
d63805a469
A little reformatting for better print appearance.
2001-10-31 20:39:30 +00:00
Peter Eisentraut
8e144b09ae
More information about partial indexes, and some tips about examining
...
index usage.
2001-10-31 20:38:26 +00:00
Peter Eisentraut
028c72525d
Reformat some non-sensical markup.
2001-10-31 20:37:39 +00:00
Peter Eisentraut
d6b2d6b640
Empty ulinks show the url string as hot text; no need to repeat the url as
...
element content.
2001-10-31 20:35:02 +00:00
Dave Cramer
1da3771b4e
changes to support 3rd party ERD tools and staroffice
2001-10-31 20:27:37 +00:00
Dave Cramer
af000b7f2e
allow null passwords
2001-10-31 20:26:01 +00:00
Dave Cramer
29916087d0
added dummy login
2001-10-31 20:24:32 +00:00
Bruce Momjian
fa8505f996
Update TODO list.
2001-10-31 15:11:08 +00:00
Bruce Momjian
453baecda3
Update TODO list.
2001-10-31 15:06:02 +00:00
Thomas G. Lockhart
c859ff92d0
Fix queries to insulate from daylight savings time.
2001-10-31 14:44:23 +00:00
Bruce Momjian
57584d70fa
More *.po cleanups for new spacing.
2001-10-31 05:16:31 +00:00
Bruce Momjian
e7fc0604cd
Modify *.po files and regression expected output for new clearer error
...
message spacing.
2001-10-31 05:14:33 +00:00
Bruce Momjian
37bba02bdb
Here is an updated version of /src/backend/po/ru.po
...
which incorporates recent changes by Bruce to
readability of some messages and few more translations.
--
Serguei A. Mokhov
2001-10-31 04:58:36 +00:00
Bruce Momjian
85817580f4
Traditional Chinese error messages for JDBC.
...
Zhenbang Wei
2001-10-31 04:55:02 +00:00
Bruce Momjian
85801ed9b8
Attached is a small patch for the Reference Manual which adds
...
information about nulls and sort order.
This is based on information obtained from Peter Eisentraut and
Tom Lane on pgsql-hackers.
Please check my English and Docbook markup, as both are a second
language to me.
Rene Pijlman
2001-10-31 04:50:52 +00:00
Bruce Momjian
4911c85e86
Add ALTER TABLE ADD UNIQUE regression tests from Christopher Kings-Lynne.
...
Add space between slash for ALTER TABLE / ADD ....
Regression and *.po updates to follow.
2001-10-31 04:49:44 +00:00
Bruce Momjian
74c2f8e729
Apply updated PO language patch.
...
Zhenbang Wei
2001-10-31 04:31:17 +00:00
Bruce Momjian
41b161f0eb
PO language update.
...
forth@pagic.net
2001-10-31 04:20:26 +00:00
Bruce Momjian
2fd8f8907f
Update TODO list.
2001-10-31 01:56:55 +00:00
Tom Lane
9a88b8a600
Update solaris-1947 variant files for new datetime regression tests.
...
Results checked by Olivier Prenant.
2001-10-30 22:48:57 +00:00
Barry Lind
2f254bdd56
updates to JDBC TODO items
2001-10-30 20:45:17 +00:00
Tom Lane
b9cd4c8331
Grammatical corrections.
2001-10-30 20:13:44 +00:00
Tom Lane
96ca8ffebc
Fix problems with subselects used in GROUP BY expressions, per gripe
...
from Philip Warner. Side effect of change is that GROUP BY expressions
will not be re-evaluated at multiple plan levels anymore, whereas this
sometimes happened with old code.
2001-10-30 19:58:58 +00:00
Barry Lind
512a3aef36
fixed change in behavior introduced in bytea / getBytes changes. This patch reverts back unintentional change in behavior to return raw value even when not bytea column
2001-10-30 06:31:59 +00:00
Bruce Momjian
c41b6b1b9c
Fix small problem Tom Lane found with pgindent run.
2001-10-30 05:38:56 +00:00
Barry Lind
d650a6f580
updated patch from Mark Lillywhite per Tom Lane's comments: subtract VARHDRSZ first then and with 0xffff
2001-10-30 05:09:51 +00:00
Barry Lind
d80d4baa09
applied patch from Mark Lillywhite, patch was already applied to jdbc2, this applies same fix to jdbc1 code
2001-10-30 05:05:25 +00:00
Bruce Momjian
cd01c32f55
Add trailing semicolon for Joe Conway
2001-10-29 19:41:54 +00:00
Bruce Momjian
2f1e1bcec6
Update HISTORY per HACKERS discussion.
2001-10-29 19:28:48 +00:00
Bruce Momjian
8469a33818
Add gp->gr_mem != NULL check for Solaris, per Seth Hettich
2001-10-29 18:06:54 +00:00
Bruce Momjian
40b1403ae8
Check for NULL return from getgrgid(), per Seth Hettich
2001-10-29 17:55:41 +00:00
Tatsuo Ishii
f2a2ad59bc
Fix bug with illegal call to calloc.
2001-10-29 06:45:32 +00:00
Hiroshi Inoue
aaf95b6c86
Change position of a check button in multibyte mode.
2001-10-29 02:51:46 +00:00
Bruce Momjian
6783b2372e
Another pgindent run. Fixes enum indenting, and improves #endif
...
spacing. Also adds space for one-line comments.
2001-10-28 06:26:15 +00:00
Bruce Momjian
c29797deeb
Add code to trip trailing newlines in a file.
2001-10-27 13:54:45 +00:00
Bruce Momjian
5ef74fe593
Correct fix for indenting.
2001-10-27 03:31:36 +00:00