git.postgresql.org Git - postgresql.git/log
Update HISTORY.
Update with more comments.
Jan Wieck [2003年10月31日 03:58:21 +0000 (03:58 +0000)]
Fix for possible referential integrity violation when a qualified ON INSERT
rule split the query into one INSERT and one UPDATE where the UPDATE
then hit's the just created row without modifying the key fields again.
In this special case, the new key slipped in totally unchecked.
Jan
Tom Lane [2003年10月31日 03:58:15 +0000 (03:58 +0000)]
Small fix to Christopher's recent improvements --- underscore is not
a special character in regexes, but it is for LIKE, so NOT LIKE 'pg_%'
is incorrect. Need NOT LIKE 'pg\_%'.
Tom Lane [2003年10月31日 00:18:55 +0000 (00:18 +0000)]
Use Tcl ByteArray objects to avoid unwanted character set translation
in libpgtcl's lo_read/lo_write commands. Also, deal correctly with
failure return from lo_read(). ljb and Tom Lane.
Tom Lane [2003年10月30日 21:37:38 +0000 (21:37 +0000)]
Further work on tab completion code: arrange for system catalogs to be
offered for completion only when the input-so-far is at least 'pg_'.
This seems to be the best compromise behavior emerging from yesterday's
discussion. While at it, refactor code to eliminate repetitive use of
nearly identical queries, which was exceedingly tedious to maintain.
Also const-ify code more thoroughly in hopes of moving constant data into
text segment, and remove unnecessary length limit on queries.
Fix markup by using <note> for comments.
More SGML cleanup.
SGML cleanup.
Update SGML release notes with Peter's direction. Does not compile
because of section adjustments still needed.
Mark release note comments as new subsections rather than footnotes, per
Peter.
Remove "Changes" section and pull all sections below it up one level.
More comment additions.
Tom Lane [2003年10月30日 17:18:55 +0000 (17:18 +0000)]
Allow the query for a plpgsql cursor to begin with '(' as well as 'SELECT'.
Per example from Kumar, 30-Oct-03.
use the result set to set the fetchsize
Applied patch by Dave Cramer to fix several bugs in compatlib.
Fix markup for new release footnotes.
Update FAQ_DEV: elog => ereport.
Update more release descriptions.
Add more footnote comments to the release notes.
Tom Lane [2003年10月29日 22:20:54 +0000 (22:20 +0000)]
Fix some corner cases in ACL manipulation: don't foul up on an empty
ACL array, and force languages to be treated as owned by the bootstrap
user ID. (pg_language should have a lanowner column, but until it does
this will have to do as a workaround.)
Add first release note detail item.
Update for 7.4 --- prefer IN to EXISTS.
Tom Lane [2003年10月29日 18:10:15 +0000 (18:10 +0000)]
Give a useful error message if a RangeVar is encountered in an expression.
Per example from Ian Barwick, 28-Oct-03.
Tom Lane [2003年10月29日 17:36:57 +0000 (17:36 +0000)]
compact_fsm_storage() does need to handle the case where a relation's
FSM data has to be both moved down and compressed. Per report from
Dror Matalon.
Update for OSF 4.0 platform.
Patches from Oliver Jowett to fix CursorFetchTest, 7.4 now does not automatically delete cursors
Tom Lane [2003年10月28日 23:35:52 +0000 (23:35 +0000)]
Don't include "schema." in the set of possible tab completions once
"schema." has been typed. This allows readline to complete subsequent
characters immediately if all relations in the target schema start with
the same prefix. This actually worked before, but I unintentionally
broke it a few days ago.
Also, make completion schema-aware for GRANT, REVOKE, VACUUM.
Tom Lane [2003年10月28日 21:55:58 +0000 (21:55 +0000)]
Include -lkrb5 when needed for shlibs depending on libpq. Per report
from Johan Henselmans.
Tom Lane [2003年10月28日 21:05:29 +0000 (21:05 +0000)]
Don't choke when the handler for a procedural language is located in
the pg_catalog schema. Per bug report some months back from Jochem van Dieten.
Tom Lane [2003年10月28日 20:26:47 +0000 (20:26 +0000)]
Guard against Ant versions that print CLASSPATH before the version number
in -version output. Per report from Johann Uhrmann.
Tom Lane [2003年10月28日 20:18:09 +0000 (20:18 +0000)]
Adjust wording to avoid giving the impression that schema USAGE
privilege hides system catalog entries.
Add --describe-config to top of postgres manual page.
Document --describe-config.
Change Solaris tests to test for SHM_SHARE_MMU, per Tom.
Update Win32 clients.
Tom Lane [2003年10月27日 07:42:34 +0000 (07:42 +0000)]
Un-break Darwin port.
Here is an update to the dbmirror README file.
-References to older versions of PostgreSQL have been removed(It no
longer
compiles against older versions)
-Added a link to PgPerl at GBorg.
Steven Singer
Fix MOVE/FETCH wording.
Update intel solaris.
Improve indenting of port entries.
Update Solaris 5.6.
Correct version numbers.
Fixed bug with indicators when storage for the string is dynamically allocated.
'sun' => '__sun__'
Test for 'sun' rather than 'solaris' for intimate shared memory.
Fix two bugs in funcs.source that made the tutorial script fail.
Make a LOT of fixes to syscat.source to:
* Set search_path properly (and reset it)
* Add schema name to all results
* Add schema name to ORDER BY first
* Make checks for user-defined objects match reality
* format_type all type names
* Respect attisdropped
* Change !~ to 'not like' since it's more standard
Christopher Kings-Lynne
Update MOVE/FETCH release note mention.
Add:
> * Change LIMIT/OFFSET to use int8
Add mention of quotes on function body to NOTES section.
Oliver Elphick
Allow win32 client compiles with MSC.
Hiroshi Saito
*** empty log message ***
Add:
> * Allow more ISOLATION LEVELS to be accepted, but issue a warning for them
Uppercase a few keywords in queries.
Update for m68k from Peter.
Update for Noèl Köthe in SGML.
Mark Linux/ppc as working.
Mark linux m68k, alpha as working.
Remove very old platforms as unsupported, <=7.0.
Mark true64 os version as 5.1.
Mark true64 alpha port as working.
Fix Hans' name in SGML.
Update aix port.
Fix #elif typo.
Update linux/mips port.
Add m68k to linux port.
Update linux/mips port.
update linux ports for arm, s390, itanium.
Update for port freebsd/alpha.
Get Tru64/cc to compile. Need to add -ieee so that it doesn't choke on
0.0/0.0. That option appears to affect the regression test result as well.
The compiler documentation doesn't recommend -O4 for universal use, so
let's stick to the conservative -O (== -O2) by default.
Translation update
Translation updates
Fix CFLAGS selection to actually work. Add test to detect whether gcc's
option -fno-strict-aliasing is available.
Remove socket credentials defines not referenced.
Update Netbsd/i386 port.
Update ports for Solaris.
Remove weird test in ccsym
Update openbsd port.
Don't reference pthread.h unless we have threads enabled, per Peter.
Update for osX 10.3.
Update ports for freebsd, cygwin.
Use AROPT, not hard-coded flags.
Update Linux/Sparc 32-bit port.
Update Linux x86 port.
Update OSX port.
Mark BSD/OS as working in 7.4.
Move pre-7.3 platforms to unsupported.
Translation updates
Move 2phase discussion to 7.5 queue, not TODO.detail.
Move 2phase discussion to 7.5 queue, not TODO.detail.
< o Queries across databases or servers (two-phase commit) [2phase]
> o Queries across databases or servers (two-phase commit)
Add 2-phase TODO.detail.
Add TODO.detail:
> o Queries across databases or servers (two-phase commit) [2phase]
Update INSTALL to say beta5.
Tom Lane [2003年10月23日 13:58:43 +0000 (13:58 +0000)]
Remove obsolete information about altering default optimization flags for
gcc. Per comment from original author, Brian Gallew:
"Ancient history. Kill it fast."
Tom Lane [2003年10月22日 22:28:10 +0000 (22:28 +0000)]
Move docs about index cost estimation functions and writing a procedural
language handler to the 'Internals' area, per my proposal of yesterday.
Clean up the trigger documentation a bit. Push SPI chapter to the end
of its part, and reorder the Internals chapters into what seems a more
sensible order (at the moment anyway).
Here is a documentation patch that makes zulu, etc. all more consistent.
Release notes updates from Neil Conway.
Add:
> * Allow functions to have a search path specified at creation time
Tom Lane [2003年10月22日 16:43:42 +0000 (16:43 +0000)]
Add missing semicolon, per Johann Uhrmann.
Avoids warnings from newer bisons.
Add mention that "today" doesn't work as column default anymore.
up configure to beta5
Tom Lane [2003年10月22日 03:50:27 +0000 (03:50 +0000)]
Another example-to-documentation difference. Maybe we can find a
better way to keep these in sync...
Tom Lane [2003年10月21日 23:28:42 +0000 (23:28 +0000)]
Ooops, missed updating this part of the complex-datatype example.
This is the main PostgreSQL git repository.
RSS
Atom