491545fff4
Do not require iconv for dbase conversion.
2001-12-21 05:29:46 +00:00
5446b1ba72
Remove:
...
* Fix contrib/dbase to not require libiconv
2001-12-21 05:27:19 +00:00
a7aeb7db18
* Fix contrib/dbase to not require libiconv.
2001-12-21 04:31:58 +00:00
3f94ff5400
Allow contrib/dbase to compile if HAVE_ICONV_H it not defined. This is
...
only a partial solution but a step in the right direction.
2001-12-21 04:30:59 +00:00
eb36cdd562
Add needed libiconv link to contrib/dbase, per Christopher Kings-Lynne
2001-12-21 04:13:12 +00:00
c3c36bf32f
pre-page -> after-change, per Vadim.
2001-12-21 03:55:45 +00:00
9640666c6f
Spiff up discussion of precision on date/time data types.
...
Add a NetBSD/alpha and update info on a few other platforms.
2001-12-21 03:54:02 +00:00
2d004d7f95
Allow location of index creation perl script be be specified in
...
Makefile.custom, to allow finding it on Mandrake systems (at least).
2001-12-21 03:53:04 +00:00
ba8d7ac8e9
Select proper geometry comparison file for freebsd/alpha.
...
Per report from Christopher Kings-Lynne.
2001-12-21 03:03:55 +00:00
20f94e16a9
Pre-page write additions.
2001-12-20 22:01:29 +00:00
8799d84603
Add memcmp() test and new memcmp.c file, for SunOS. Tested by Tatsuo.
2001-12-20 21:23:05 +00:00
960f6a5fdf
Fix for SunOS4 horology test
2001-12-20 04:25:00 +00:00
48aa2dbe61
MIN() -> Min, fixes compile problem.
2001-12-20 02:39:26 +00:00
71d641cf15
Reflect Tom's change
2001-12-20 01:56:08 +00:00
8647c14228
Fix buffer-overrun problem in pretty printer.
2001-12-19 22:35:35 +00:00
897083715b
Fix pgstattuple to acquire a read lock on the target table. This
...
prevents embarassments such as having the table dropped or truncated
partway through the scan. Also, fix free space calculation to include
pages that currently contain no tuples.
2001-12-19 20:28:41 +00:00
9aa2e7da51
Temporarily dike out GetUndoRecPtr() in checkpoint generation, since we
...
do not use the undo pointer anyway. This is a quick-hack solution for
the three-way deadlock condition discussed in pghackers 17-Dec-01.
Need to find a better way of doing it.
2001-12-19 19:42:51 +00:00
a51c7c4b49
New edition
2001-12-19 18:53:58 +00:00
d43e7d3372
Better formatting
2001-12-19 18:53:47 +00:00
95668f0deb
Minor improvements
2001-12-19 18:50:48 +00:00
41acf3d820
Some tuning
2001-12-19 18:49:56 +00:00
f9d87c66db
Fix warning
2001-12-19 18:49:24 +00:00
14e1270579
Tweak to make freebsd/alpha use the correct float8 comparison file.
2001-12-19 17:25:55 +00:00
de59370844
Make sure that all variants of HeapTupleSatisfies will do the right thing
...
if presented with a tuple in process of being moved by VACUUM. Per
bug report from Brian Hirt.
2001-12-19 17:18:39 +00:00
e71493300c
Move geqo enable into proper section.
2001-12-17 19:09:01 +00:00
cafee83784
Update TODO list.
2001-12-15 17:28:51 +00:00
79b89b4658
Update TODO list.
2001-12-15 16:11:57 +00:00
f3292901b9
More comment for libpgeasy.
2001-12-14 02:15:04 +00:00
2e05d3ecdb
Fix double-memory free in libpgeasy; problem introduced yesterday.
2001-12-14 00:52:53 +00:00
bdafb40077
Clean up comment in libpgeasy.
2001-12-14 00:40:31 +00:00
3aaaf5aeee
Add Swedish
2001-12-13 22:06:33 +00:00
cfe88fdf4b
update
2001-12-13 22:04:40 +00:00
d159952304
Update from Serguei Mokhov
2001-12-13 22:04:12 +00:00
2adce49615
Update Hungarian from Kovacs Zoltan
2001-12-13 22:02:20 +00:00
43fe4faa7d
--with-pam was claiming to take an argument, but didn't. Help display fixed.
2001-12-13 22:00:22 +00:00
60e42602a0
revert last change
2001-12-13 18:39:04 +00:00
cde5fae7c9
>>I confirmed the UNION hack is no longer required. Thanks! Is it too late
...
>>to change the README in contrib/dblink?
>>
>
> No, I don't think that's a problem. Send a patch.
>
Here's a (documentation only) patch for the contrib/dblink README.
Joe Conway
2001-12-13 10:48:39 +00:00
ba578ae667
Free libpgeasy result structure on database close; fixed memory leak.
2001-12-13 09:40:18 +00:00
219b4b2490
tag it as b4, with all the changes that have gone on ...
REL7_2_BETA4
2001-12-12 13:30:12 +00:00
990eb8552e
Don't accept names of complex types (ie, relation types) as being
...
requests for implicit trivial coercions. Prevents sillinesses like
this one:
regression=# select x.int8_tbl.q1 from int8_tbl x;
ERROR: fmgr_info: function 270997776: cache lookup failed
2001-12-12 03:28:49 +00:00
3dd85bcb08
Applied patch from Thomas O'Dowd that fixes timestamp parsing. The jdbc code
...
wasn't updated to handle more than two decimal digits for fractional seconds
that now are possible in 7.2. This patch fixes the timestamp parsing logic.
I have built and tested on both jdbc1 and jdbc2.
2001-12-11 04:48:05 +00:00
45a6343ebb
Patch from Ned Wolpert that fixes a bug that caused the cache of types not
...
to be used, causing extra sql statements to be executed. This was a
significant performance problem with the database meta data classes.
The fix is a simple one liner.
2001-12-11 04:44:23 +00:00
4433eb1dff
Make sure that inlined S_UNLOCK is marked as an update of a 'volatile'
...
object. This should prevent the compiler from reordering loads and stores
into or out of a critical section.
2001-12-11 02:58:49 +00:00
07009651ce
Repair roundoff-error problem for stddev/variance results near zero,
...
per complaint from Kemin Zhou.
Fix lack of precision in numeric stddev/variance.
2001-12-11 02:02:12 +00:00
63cc56de54
Suppress subquery pullup and pushdown when the subquery has any
...
set-returning functions in its target list. This ensures that we
won't rewrite the query in a way that places set-returning functions
into quals (WHERE clauses). Cf. bug reports from Joe Conway.
2001-12-10 22:54:12 +00:00
584f818bef
Declare LWLock pointers as volatile to prevent AIX compiler from
...
reordering operations at its whim. Releasing TAS lock before we've
finished updating proc structure is uncool.
2001-12-10 21:13:50 +00:00
53016fa55c
Update from Weiping He
2001-12-10 18:45:57 +00:00
356c02b262
Update from Serguei Mokhov
2001-12-10 18:44:44 +00:00
4e65c89fc3
AIX 5 needs same resultmap tweaks as AIX 4.
2001-12-10 16:31:23 +00:00
f3f8499bc0
Repair case-conversion error in to_date's handling of roman numerals.
...
From Manuel Sugawara, approved by Karel Zak.
2001-12-10 15:34:05 +00:00