Tom Lane
f5ba72ea04
Consolidate several near-identical uses of mktime() into a single
...
routine DetermineLocalTimeZone(). In that routine, be more wary of
broken mktime() implementations than the original code was: don't allow
mktime to change the already-set y/m/d/h/m/s information, and don't
use tm_gmtoff if mktime failed. Possibly this will resolve some of
the complaints we've been hearing from users of Middle Eastern timezones
on RedHat.
2001-05-03 22:53:07 +00:00
Bruce Momjian
0cec2bb0cd
BTW it does not add encodign it just patches existing one (KOI8) to
...
support two - KOI8-R and KOI8-U (latter is superset of the former if
not to take to the account pseudographics)
Andy Rysin
2001-05-03 21:38:45 +00:00
Tom Lane
d05b4bd7c6
Permission checking wasn't quite right for insert/update/delete rules,
...
either :-(.
2001-05-03 21:16:48 +00:00
Bruce Momjian
c434ae3539
pg_dump can dump 7.0 databases.
2001-05-03 20:39:52 +00:00
Bruce Momjian
3f8e21c34a
apply a little patch:
...
Oleg Bartunov
2001-05-03 19:20:24 +00:00
Tom Lane
2792374cff
Ensure that btree sort ordering functions and boolean comparison operators
...
give consistent results for all datatypes. Types float4, float8, and
numeric were broken for NaN values; abstime, timestamp, and interval
were broken for INVALID values; timetz was just plain broken (some
possible pairs of values were neither < nor = nor >). Also clean up
text, bpchar, varchar, and bit/varbit to eliminate duplicate code and
thereby reduce the probability of similar inconsistencies arising in
the future.
2001-05-03 19:00:37 +00:00
Tom Lane
77fe28f33e
Describe handling of multiply-inherited fields correctly.
2001-05-03 17:50:55 +00:00
Tom Lane
f2122d092f
Permissions were not checked correctly when one view invokes another.
...
Per bug report from Lieven Van Acker, 5/2/01.
2001-05-03 17:47:49 +00:00
Bruce Momjian
d31b9f3101
Update shared memory docs.
2001-05-03 17:28:13 +00:00
Bruce Momjian
645553eaf6
Improve list.
2001-05-03 17:20:14 +00:00
Bruce Momjian
7efc878104
Final stamp for 7.1.1. All done.
2001-05-03 17:17:41 +00:00
Bruce Momjian
3bc0ab783b
Updates for 7.1.1. Not done yet.
2001-05-03 16:47:58 +00:00
Bruce Momjian
c0f5b4c82c
autoconf
2001-05-03 16:43:26 +00:00
Bruce Momjian
13e9cea634
Some updates for 7.1.1.
2001-05-03 16:26:21 +00:00
Tom Lane
8571e6c6e5
Correct pg_description entry for type macaddr.
2001-05-03 16:18:02 +00:00
Tom Lane
f13cb7e524
Fixes to make ecpg work on Cygwin, from Jason Tishler <Jason.Tishler@dothill.com>.
2001-05-03 16:07:52 +00:00
D'Arcy J.M. Cain
b95ff0c542
Initial checkin of a contributed type that handles passwords efficiently.
2001-05-03 12:32:13 +00:00
Bruce Momjian
4ad073cf4c
In the outputs section the NOTICE reads:
...
aggregate 'agg' for 'type' does not exist.
Mismatch with synopsis, agg must be name here.
Frank Wegmann
2001-05-02 20:35:21 +00:00
Bruce Momjian
8e393fc501
Added mention of SHMALL and removed BSD/OS-specific table.
2001-05-02 17:04:53 +00:00
Bruce Momjian
4929d85e50
description of the command line option echo should read:
...
Echo the queries that createuser generates and sends to the backend.
^^^^^^^^^^
Frank Wegmann
2001-05-02 14:46:33 +00:00
Tom Lane
d67a618e19
Previous commit mistakenly converted all newlines to DOS style (CR/LF).
...
Convert back to Unix style --- it seems some versions of nmake insist
on this.
2001-05-02 14:23:40 +00:00
D'Arcy J.M. Cain
57faa28740
Add note explaining why inserts take longer as tables grow. Also suggest
...
the way to handle this.
2001-05-02 11:21:57 +00:00
D'Arcy J.M. Cain
66feaa80dc
Change "|zzlzzzz" argument specification to "|zzizzzz" so that the code works
...
properly on 64 bit systems.
Change submitted by Marc Poinot (Marc.Poinot@onera.fr )
2001-05-02 11:17:24 +00:00
Peter Eisentraut
adee1da002
Bump version to 7.1.1. Now run over to hub to rebuild documentation
...
before release...
2001-05-01 10:50:26 +00:00
Peter Eisentraut
4f268b01cd
More markup fixes
2001-05-01 10:48:57 +00:00
Tom Lane
d45c0794df
Fix slightly confused description of debug options.
2001-05-01 03:00:28 +00:00
Tom Lane
ac2b9aee1c
Synced gram.y and preproc.y.
2001-05-01 02:33:55 +00:00
Thomas G. Lockhart
d63571a7f4
Allow a string argument to the EXTRACT() function.
...
This is an extension to the SQL9x standard, but is consistant with usage
of the underlying date_part() function used to implement it.
Example: EXTRACT('YEAR',...)
No impact on regression tests.
2001-05-01 01:36:10 +00:00
Hiroshi Inoue
892d46e7d0
1) fix bugs reported by Andrea Aime.
...
2) fix a bug reported by Jan Wieck.
psqlodbc is 7.01.0005 now.
2001-05-01 00:47:06 +00:00
Tom Lane
48bdf021b6
Update FAQ_HPUX now that we have reports of out-of-the-box build
...
on HPUX 11.
2001-04-30 23:55:26 +00:00
Tom Lane
c8b5598a11
Document pltcl's return_null command.
2001-04-30 22:22:34 +00:00
Tom Lane
955c8771f8
Repair freshly-broken markup.
2001-04-30 22:21:22 +00:00
Tom Lane
8bb3c8fe54
exec_move_row() should be more forgiving of tuples with a different
...
number of columns than it was expecting, for reasons that are now
documented in the code...
2001-04-30 20:05:40 +00:00
Tom Lane
e2004dfc69
Suppress pull-up of subqueries that are in the nullable side of an outer
...
join. This is needed to avoid improper evaluation of expressions that
should be nulled out, as in Victor Wagner's bug report of 4/27/01.
Pretty ugly solution, but no time to do anything better for 7.1.1.
2001-04-30 19:24:47 +00:00
Bruce Momjian
60ba30d13a
Break up PQexec() result functions into subsections to be clearer. Both
...
libpq and libpq++ reorganized.
2001-04-30 17:38:00 +00:00
Bruce Momjian
cfc4d6c510
Update TODO list.
2001-04-30 15:57:01 +00:00
Bruce Momjian
9a878b4ec7
Add mention of libpgtcl's options to manual, libpq++ markup fixes.
2001-04-30 04:26:01 +00:00
Bruce Momjian
189a752ef9
Update TODO list.
2001-04-30 02:35:40 +00:00
Tatsuo Ishii
c527366b60
Add missing Unicode support for Cyrillic encodings.
...
Patches contributed by Victor Wagner.
2001-04-29 07:27:38 +00:00
Bruce Momjian
82511e3375
In create_function there is a remark concerning SQL/PSM not
...
being ratified as yet. This is certainly no longer true, it wasn't
even true in Q2/1998 when I did a little research for Date's book.
SQL/PSM had been published on 1996-12-15 as ISO/IEC 9075:4. So you
might want to update that section.
Frank Wegmann
2001-04-28 13:59:07 +00:00
Bruce Momjian
651acdaa6e
A small patch for a small option (for rel. 7.1).
...
Jimmy Olgeni
2001-04-27 01:31:56 +00:00
Bruce Momjian
8926d8b28d
Update FAQ.
2001-04-27 00:55:49 +00:00
Bruce Momjian
1531ed897b
Update FAQ.
2001-04-27 00:22:59 +00:00
Bruce Momjian
ea0d2dab06
Update FAQ.
2001-04-27 00:21:44 +00:00
Tom Lane
2adff4b20e
Remove bogus Assert from AbsoluteTimeIsBefore(). (If you don't think
...
it's bogus, try building a btree index on the regress tests' abstime_tbl.)
2001-04-26 21:52:17 +00:00
Tom Lane
a43f20cb0a
Tweak nestloop costing to weight restart cost of inner path more heavily.
...
Without this, it was making some pretty silly decisions about whether an
expensive sub-SELECT should be the inner or outer side of a join...
2001-04-25 22:04:37 +00:00
Bruce Momjian
cbeda8401a
Update TODO list.
2001-04-25 17:49:29 +00:00
Philip Warner
8dc42a3aa2
- Fixed CONSTRAINT TRIGGER dump to record tgconstrelid properly
...
- pgsql v7.0 compatbility
2001-04-25 07:03:20 +00:00
Peter Eisentraut
38b0f2fb3b
typological errors
2001-04-24 20:05:02 +00:00
Tom Lane
e89bf1258b
Undo pgindent brain damage, so that node type numbers can once again be
...
counted off by lines ...
2001-04-24 00:08:38 +00:00