Tom Lane
5e6d691e0d
Error message editing in backend/executor.
2003-07-21 17:05:12 +00:00
Bruce Momjian
82f18c4a2c
Fix relkind test for pg_tables.
...
Mike Quinn
2003-07-21 15:20:27 +00:00
Teodor Sigaev
8f146a9077
Fix output to psql:tsearch2.sql:13: NOTICE: ... "pg_ts_dict_pkey"
2003-07-21 15:15:19 +00:00
Teodor Sigaev
b88605337e
tsearch2 module
2003-07-21 10:27:44 +00:00
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
2003-07-21 04:18:41 +00:00
Tom Lane
d85286305d
Error message editing in backend/catalog.
2003-07-21 01:59:11 +00:00
Tom Lane
da4ed8bfdd
Another round of error message editing, covering backend/commands/.
2003-07-20 21:56:35 +00:00
Bruce Momjian
46bc587007
Update URL's.
2003-07-20 21:52:46 +00:00
Bruce Momjian
81ece923d6
Done:
...
* -Allow LIMIT/OFFSET to use expressions (Tom)
2003-07-20 19:21:41 +00:00
Bruce Momjian
9132506477
Add Opteron/Itanium comment.
2003-07-20 04:31:32 +00:00
Bruce Momjian
2f46ac5211
Add:
...
> * Delay resolution of array expression type so assignment coercion
> can be performed on empty array expressions (Joe)
2003-07-20 03:12:13 +00:00
Tom Lane
fa3bd4dbd0
Error message editing: finish up undone task of reporting the problem
...
xid when we fail to access pg_clog.
2003-07-19 21:37:37 +00:00
Tom Lane
2a4a0c4d71
Add ereport-related functions to GETTEXT_TRIGGERS list.
2003-07-19 20:32:12 +00:00
Tom Lane
a56ff9a0bd
Another round of error message editing, covering backend/parser/.
2003-07-19 20:20:53 +00:00
Bruce Momjian
0230380666
Add tablespace email.
2003-07-19 14:09:24 +00:00
Tom Lane
216311d590
First bits of work on error message editing.
2003-07-18 23:20:33 +00:00
Bruce Momjian
44f665bf40
Add cleaner formatting to config file.
2003-07-18 19:16:03 +00:00
Michael Meskes
45d8f61ff2
Added more compat stuff ot the parser.
2003-07-18 14:32:56 +00:00
Teodor Sigaev
2c914937c1
Fix subpath and subltree. Allow to return '' value.
...
subpath(ltree,0,0) returns ''.
2003-07-18 13:27:43 +00:00
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
2003-07-18 03:45:06 +00:00
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.
2003-07-18 03:21:53 +00:00
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.
2003-07-17 22:28:42 +00:00
Tom Lane
0347d310d7
Oh, for crying in a bucket ... relax Assert so that glibc's strxfrm
...
does not dump core.
2003-07-17 22:20:14 +00:00
Tom Lane
59d9a37080
Work around buggy strxfrm() present in some Solaris releases.
2003-07-17 20:52:36 +00:00
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.
2003-07-17 20:13:57 +00:00
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.
2003-07-17 16:45:04 +00:00
Michael Meskes
c15b66ef82
Allow blanks at the end of numerical values.
2003-07-17 11:27:55 +00:00
Michael Meskes
7d32551a81
Fixed some bugs in Informix compat functions.
2003-07-17 07:54:29 +00:00
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.
2003-07-17 00:55:37 +00:00
Tom Lane
93236b58e0
Add defenses against trying to attach qual conditions to a setOperation
...
query node, since that won't work unless the planner is upgraded.
Someday we should try to support at least some cases of this, but for
now just plug the hole in the dike. Per discussion with Dmitry Tkach.
2003-07-16 17:25:48 +00:00
Michael Meskes
96be4b28a3
Applied patch to fix two compatibility functions.
2003-07-16 13:18:51 +00:00
Tom Lane
ffcb1491af
Now that I look, SHOW TRANSACTION_ISOLATION isn't quite consistent
...
with SET TRANSACTION_ISOLATION, either.
2003-07-15 19:34:43 +00:00
Tom Lane
cfa6999d3b
Cause SHOW DATESTYLE to produce a string that will be accepted by SET
...
DATESTYLE, for instance 'SQL, European' instead of
'SQL with European conventions'. Per gripe a month or two back from
Barry Lind.
2003-07-15 19:19:56 +00:00
Tom Lane
274328c8a8
Avoid use of int64_t, which seems not to be very portable. Simplify
...
padding logic for struct sockaddr_storage --- original version did not
do what it claimed to when SALEN is defined.
2003-07-15 17:54:34 +00:00
Tom Lane
bbac4188f9
OSF supports pthreads, per Philip Yarra.
2003-07-15 17:28:36 +00:00
Michael Meskes
42df5e311f
Started to create different error codes for different backend messages.
2003-07-15 12:38:38 +00:00
Tom Lane
9117e55493
Tweak original coding so that we can determine the platform-specific
...
shared_buffers and max_connections values to use before we run the
bootstrap process. Without this, initdb would fail on platforms where
the hardwired default values are too large. (We could get around that
by making the hardwired defaults tiny, perhaps, but why slow down
bootstrap by starving it for buffers...)
2003-07-15 00:11:14 +00:00
Tom Lane
683f4d0a25
Remove duplicate definition of ERROR.
2003-07-14 23:36:15 +00:00
Tom Lane
3d09f6c560
Make cost estimates for SubqueryScan more realistic: charge cpu_tuple_cost
...
for each row processed, and don't forget the evaluation cost of any
restriction clauses attached to the node. Per discussion with Greg Stark.
2003-07-14 22:35:54 +00:00
Tom Lane
b800196230
Fix typo in comment, as noted by Weiping He.
2003-07-14 20:34:18 +00:00
Tom Lane
de98a7e23a
The default values for shared_buffers and max_connections are now 1000
...
and 100 respectively, if the platform will allow it. initdb selects
values that are not too large to allow the postmaster to start, and
places these values in the installed postgresql.conf file. This allows
us to continue to start up out-of-the-box on platforms with small SHMMAX,
while having somewhat-realistic default settings on platforms with
reasonable SHMMAX. Per recent pghackers discussion.
2003-07-14 20:00:23 +00:00
Tom Lane
8460000069
Whoops, missed committing this change to match cosmetic changes in
...
ascii.c.
2003-07-14 16:58:24 +00:00
Tom Lane
b1eb992cc5
Fix a *second* buffer overrun bug in to_ascii(). Grumble.
2003-07-14 16:41:38 +00:00
Michael Meskes
6eb27d16b6
Missed one rule in syncinc preproc.y which resulted in reduce/reduce conflicts.
2003-07-14 12:18:25 +00:00
Michael Meskes
e895eb197d
- Synced preproc.y with gram.y
...
- Init sqlca in ECPGprepare().
- Added CLOSE DATABASE for Informix compatibility.
2003-07-14 10:16:45 +00:00
Bruce Momjian
cbdda3e2a9
Add description for new GUC context.
...
Aizaz Ahmed
2003-07-09 17:57:47 +00:00
Michael Meskes
18936ef372
Argh! Missed one file.
2003-07-09 14:53:18 +00:00
Michael Meskes
abfa8ae54f
Fixed some Informix compat functions so they handle NULL resp. indicators better.
2003-07-09 13:49:38 +00:00
Bruce Momjian
4afcba05de
Doc update for LOG_MIN_DURATION_STATEMENT set to zero.
2003-07-09 08:52:56 +00:00
Bruce Momjian
0ecc8ac425
Add special checks for non-super-user setting LOG_MIN_DURATION_STATEMENT
...
to zero.
2003-07-09 08:51:19 +00:00