Bruce Momjian
a0743b132e
Update to 7.3.4 as newest release.
23 years ago
Bruce Momjian
a7e898785b
Stamp 7.3.4.
23 years ago
Tom Lane
c72839d5be
Error message editing in backend/bootstrap, /lib, /nodes, /port.
23 years ago
Tom Lane
56f87688c4
Error message editing for foreign-key triggers.
23 years ago
Tom Lane
fe5de484fe
A few parentheses shy of a load here ...
23 years ago
Bruce Momjian
a0cc9f3cb9
Add GUC parameter to control rendezvous name.
23 years ago
Tom Lane
25114d3e29
wups, took out one memset too many ...
23 years ago
Tom Lane
b05d3ae1ed
Error message editing in backend/libpq, backend/postmaster, backend/tcop.
...
Along the way, fix some logic problems in pgstat_initstats, notably the
bogus assumption that malloc returns zeroed memory.
23 years ago
Bruce Momjian
277dbb0c34
Fix threading configure tests, from Peter.
23 years ago
Teodor Sigaev
11eb002c5b
Remove link of tarball
23 years ago
Teodor Sigaev
f5c0ef4dda
Mark tsearch v1 as deprecated
23 years ago
Barry Lind
0a73f69cb4
Fix to prevent SQL injection attacks for code calling setObject(int,Object,int)
...
where Object is a user supplied String and the type is a numeric type
(i.e. INTEGER,LONG,etc).
Also applied a patch from Kim Ho that fixes compile problems under jdk1.2
Modified Files:
jdbc/org/postgresql/Driver.java.in
jdbc/org/postgresql/jdbc1/AbstractJdbc1Statement.java
23 years ago
Bruce Momjian
11cb598c39
Add:
...
> o Allow PL/pgSQL to name columns by ordinal position, e.g. rec.(3)
23 years ago
Bruce Momjian
5ff532e14b
Add:
...
> * Prevent COMMENT ON DATABASE from using a database name
23 years ago
Bruce Momjian
0fe252b5da
Don't report sequendces in pg_tables.
23 years ago
Bruce Momjian
a4bfb055d4
Back out comment on GucContexts.
23 years ago
Barry Lind
80bbd3281d
Applied patch from dmitry@openratings.com to fix parsing of array values
...
Modified Files:
jdbc/org/postgresql/Driver.java.in
jdbc/org/postgresql/jdbc2/Array.java
23 years ago
Tom Lane
ec7aa4b515
Error message editing in backend/access.
23 years ago
Tom Lane
c6106d91e2
Fix regression test broken by recent view change.
23 years ago
Bruce Momjian
e4c5b9806e
Add:
...
> o Add PL/PHP (Joe, Jan)
23 years ago
Bruce Momjian
ad8181c477
Add:
...
> * Have AFTER triggers execute after the appropriate SQL statement in a
> function, not at the end of the function
23 years ago
Tom Lane
5e6d691e0d
Error message editing in backend/executor.
23 years ago
Bruce Momjian
82f18c4a2c
Fix relkind test for pg_tables.
...
Mike Quinn
23 years ago
Teodor Sigaev
8f146a9077
Fix output to psql:tsearch2.sql:13: NOTICE: ... "pg_ts_dict_pkey"
23 years ago
Teodor Sigaev
b88605337e
tsearch2 module
23 years ago
Bruce Momjian
a605382670
I updated Japanese translation of PostgreSQL FAQ
...
according to your version on May/30.
(HTML and TEXT files are gzipped.)
Jun Kuwamura
23 years ago
Tom Lane
d85286305d
Error message editing in backend/catalog.
23 years ago
Tom Lane
da4ed8bfdd
Another round of error message editing, covering backend/commands/.
23 years ago
Bruce Momjian
46bc587007
Update URL's.
23 years ago
Bruce Momjian
81ece923d6
Done:
...
* -Allow LIMIT/OFFSET to use expressions (Tom)
23 years ago
Bruce Momjian
9132506477
Add Opteron/Itanium comment.
23 years ago
Bruce Momjian
2f46ac5211
Add:
...
> * Delay resolution of array expression type so assignment coercion
> can be performed on empty array expressions (Joe)
23 years ago
Tom Lane
fa3bd4dbd0
Error message editing: finish up undone task of reporting the problem
...
xid when we fail to access pg_clog.
23 years ago
Tom Lane
2a4a0c4d71
Add ereport-related functions to GETTEXT_TRIGGERS list.
23 years ago
Tom Lane
a56ff9a0bd
Another round of error message editing, covering backend/parser/.
23 years ago
Bruce Momjian
0230380666
Add tablespace email.
23 years ago
Tom Lane
216311d590
First bits of work on error message editing.
23 years ago
Bruce Momjian
44f665bf40
Add cleaner formatting to config file.
23 years ago
Michael Meskes
45d8f61ff2
Added more compat stuff ot the parser.
23 years ago
Teodor Sigaev
2c914937c1
Fix subpath and subltree. Allow to return '' value.
...
subpath(ltree,0,0) returns ''.
23 years ago
Bruce Momjian
fd4c775481
Stephen Robert Norris wrote:
...
> Well, no. What it says is that certain values must be escaped (but
> doesn't say which ones). Then it says there are alternate escape
> sequences for some values, which it lists.
>
> It doesn't say "The following table contains the characters which must
> be escaped:", which would be much clearer (and actually useful).
Attached documentation patch updates the wording for bytea input
escaping, per complaint by Stephen Norris above.
Joe Conway
23 years ago
Tom Lane
5ea214b590
It seems some case-insensitive locales sort upper case before lower
...
(BBBB before bbbb) and others the other way around. Provide comparison
files that cater to both approaches.
23 years ago
Tom Lane
157e17e20d
Add an upper limit to IS_VALID_JULIAN() to defend against overflow in
...
date2j(). This ensures we give reasonable errors instead of bizarre
behavior for input dates far in the future.
23 years ago
Tom Lane
0347d310d7
Oh, for crying in a bucket ... relax Assert so that glibc's strxfrm
...
does not dump core.
23 years ago
Tom Lane
59d9a37080
Work around buggy strxfrm() present in some Solaris releases.
23 years ago
Tom Lane
0c172909d5
For COMMENT ON DATABASE where database name is unknown or not the current
...
database, emit a WARNING and do nothing, rather than raising ERROR.
Per recent discussion in which we concluded this is the best way to deal
with database dumps that are reloaded into a database of a new name.
23 years ago
Tom Lane
8cf63ba920
Repair boundary-case bug introduced by patch of two months ago that
...
fixed incorrect initial setting of StartUpID. The logic in XLogWrite()
expects that Write->curridx is advanced to the next page as soon as
LogwrtResult points to the end of the current page, but StartupXLOG()
failed to make that happen when the old WAL ended exactly on a page
boundary. Per trouble report from Hannu Krosing.
23 years ago
Michael Meskes
c15b66ef82
Allow blanks at the end of numerical values.
23 years ago
Michael Meskes
7d32551a81
Fixed some bugs in Informix compat functions.
23 years ago
Tom Lane
764f72dc82
Make EXTRACT(TIMEZONE) and SET/SHOW TIMEZONE follow the SQL convention
...
for the sign of timezone offsets, ie, positive is east from UTC. These
were previously out of step with other operations that accept or show
timezones, such as I/O of timestamptz values.
23 years ago