aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* Make rule and stylesheet to try out XSLT for DocBook processingPeter Eisentraut2004-01-13
|
* Fix ecpg test program to properly access int* null indicator.Bruce Momjian2004-01-13
|
* Fix another place that wasn't maintaining AND/OR flatness of anTom Lane2004-01-12
| | | | already-canonicalized qual expression.
* Preserve AND/OR flatness during eval_const_expressions(). This seems aTom Lane2004-01-12
| | | | | useful improvement in any case, and it keeps the new logic for restrictinfo structures happy. Per report from Kris Jurka.
* Translation updatesDennis Bjorklund2004-01-11
|
* Mark string for translation.Dennis Bjorklund2004-01-11
|
* Put See Also links back in alphabetical order.Peter Eisentraut2004-01-11
|
* Translation updatesDennis Bjorklund2004-01-11
|
* Translation updatesDennis Bjorklund2004-01-11
|
* Minor documentation improvements.Neil Conway2004-01-11
|
* Add CREATE TRIGGER, CREATE INDEX, and CREATE SEQUENCE to the list ofNeil Conway2004-01-11
| | | | | | | expressions supported by CREATE SCHEMA. Also added the beginning of some regression tests for CREATE SCHEMA; plenty more work is needed here.
* Drops in the CreateProcess calls for Win32 (essentially wrapping up theBruce Momjian2004-01-11
| | | | | | fork/exec portion of the port), and fixes a handful of whitespace issues Claudio Natoli
* Remove the following unused type definitions: bool8, bool16, bool32, word8,Neil Conway2004-01-10
| | | | word16, and word32.
* Implement "WITH / WITHOID OIDS" clause for CREATE TABLE AS. This isNeil Conway2004-01-10
| | | | | | | | | | intended to allow application authors to insulate themselves from changes to the default value of 'default_with_oids' in future releases of PostgreSQL. This patch also fixes a bug in the earlier implementation of the 'default_with_oids' GUC variable: code in gram.y should not examine the value of GUC variables directly due to synchronization issues.
* Translation updatesPeter Eisentraut2004-01-10
|
* Improve has_nullable_targetlist() to allow strict functions of simpleTom Lane2004-01-10
| | | | | | variables, not just simple variables. This was foreseen in the original coding of this routine, but not implemented until now. Responds to performance gripe from Laurent Perez.
* Translation updatesDennis Bjorklund2004-01-10
|
* Translation updatesDennis Bjorklund2004-01-10
|
* Translation updatesDennis Bjorklund2004-01-10
|
* Make non-wait pg_ctl start/stop message more accurate.Bruce Momjian2004-01-10
|
* Allow BEGIN WORK to specify transaction isolation level, like STARTBruce Momjian2004-01-10
| | | | TRANSACTION.
* Fix subquery pullup logic to not be fooled when a view that appearsTom Lane2004-01-10
| | | | | | 'simple' references another view that is not simple. Must recheck conditions after performing recursive pullup. Per example from Laurent Perez, 9-Jan-04.
* Oops, can't do cpp tests inside macros; make two macros instead.Bruce Momjian2004-01-09
|
* Remove ereport() from failed connection; already done, per Tom.Bruce Momjian2004-01-09
|
* Fix for cancel key restarting postmaster, from ClaudioBruce Momjian2004-01-09
|
* Have psql help show \w parameter as requied.Bruce Momjian2004-01-09
|
* Done:Bruce Momjian2004-01-09
| | | | > * -Have psql '\i ~/<tab><tab>' actually load files it displays from home dir
* Allow psql to handle tilde user expansion for file names.Bruce Momjian2004-01-09
| | | | Zach Irmen
* Change PG_DELAY from msec to usec and use it consistenly rather thanBruce Momjian2004-01-09
| | | | select(). Add Win32 Sleep() for delay.
* Translation updatesDennis Bjorklund2004-01-09
|
* Add WIN32 pipe implementation that uses sockets.Bruce Momjian2004-01-09
| | | | Claudio Natoli
* Remove duplicate include of value.h. I think it got in because Tom and I ↵Bruce Momjian2004-01-09
| | | | both added it.
* Add comment about synchronous signals.Bruce Momjian2004-01-09
|
* Allow libpq to do thread-safe SIGPIPE handling. This allows it toBruce Momjian2004-01-09
| | | | | | | | ignore SIGPIPE from send() in libpq, but terminate on any other SIGPIPE, unless the user installs their own signal handler. This is a minor fix because the only time you get SIGPIPE from libpq's send() is when the backend dies.
* German FAQ update.Bruce Momjian2004-01-09
| | | | Ian Barwick
* Fix incorrect SQL syntax emitted when -E is given without -P.Tom Lane2004-01-09
| | | | Report and fix from Martin Pitt.
* Remove broken (and unnecessary) definition of operator <> for _int4Tom Lane2004-01-08
| | | | | datatype; the generic array comparators added in 7.4 supersede this. Per report and patch from Korea PostgreSQL Users' Group.
* Fix a spelling mistake in a comment.Neil Conway2004-01-08
|
* Throw compile error if our non-thread-safe snprintf is used.Bruce Momjian2004-01-08
|
* Update Russian FAQ.Bruce Momjian2004-01-08
| | | | Viktor Vislobokov
* Update OSF thread flags for non-gcc compiles.Bruce Momjian2004-01-08
|
* Translation updatesDennis Bjorklund2004-01-08
|
* Translation updatesDennis Bjorklund2004-01-08
|
* [Forced commit to add log message that I fat-fingered last time]Tom Lane2004-01-08
| | | | | Give a more reasonable error message when lock file exists but has zero length; prior code confused this with could-not-read-file case.
* Fix Solaris thread build settings for non-gcc compilers.Bruce Momjian2004-01-08
|
* makeTom Lane2004-01-07
|
* Make some improvements in the intelligence of the partial-indexTom Lane2004-01-07
| | | | | | | | | predicate tester. It can now deal with commuted clauses (for instance, 4 < x implies x > 3), subclauses more complicated than a simple Var (for example, upper(x) = 't' implies upper(x) > 'a'), and <> operators (for example, x < 3 implies x <> 4). Still only understands operators associated with btree opclasses, though. Inspired by example from Martin Hampl.
* Translation updatesDennis Bjorklund2004-01-07
|
* Add missing inclusion of nodes/value.h.Tom Lane2004-01-07
|
* More janitorial work: remove the explicit casting of NULL literals to aNeil Conway2004-01-07
| | | | | | | | pointer type when it is not necessary to do so. For future reference, casting NULL to a pointer type is only necessary when (a) invoking a function AND either (b) the function has no prototype OR (c) the function is a varargs function.