aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
...
* Make libpq default to localhost connections on machines without Unix-domainTom Lane2004-12-28
| | | | | sockets, rather than failing as it formerly did. Revert the thereby-obsoleted patch to make psql supply the localhost default.
* Make sure --with-pgport option propagates into postgresql.conf.Tom Lane2004-12-27
| | | | Per gripe from Josh Berkus.
* Cause pg_hba.conf file inclusion (@file stuff) to behave as documented,Tom Lane2004-12-27
| | | | | | that is, files are sought in the same directory as the referencing file. Also allow absolute paths in @file constructs. Improve documentation to actually say what is allowed in an included file.
* Translation updatePeter Eisentraut2004-12-27
|
* Fix func_ptr declaration for netbsd-mac68k, per Rémi Zara.Tom Lane2004-12-26
|
* Rearrange include file contents into a saner order, add inclusion ofTom Lane2004-12-26
| | | | <signal.h>. Per Andrew Dunstan.
* Remove 'optimization' to skip resolve_symlinks() when the foundTom Lane2004-12-24
| | | | | | | | executable file isn't itself a symlink. We still need to run the algorithm so that any directory symlinks in the path to the executable are replaced by a true path. Noticed this on seeing pg_config give me a completely wrong answer for --pkglibdir when I called it through a symlink to the installation bindir.
* Switch order of WHERE clauses in tab completion queries, as suggestedTom Lane2004-12-24
| | | | | by Rod Taylor. The foo_is_visible() functions are relatively slow and so it pays to check them after checking the name pattern match.
* Avoid memory leakage during VACUUM FULL when an index expression orTom Lane2004-12-23
| | | | | index predicate uses temporary memory for evaluation. Per example from Jean-Gerard Pailloncy.
* Add missing ecpg prototype for newly added functions.Bruce Momjian2004-12-23
|
* Added PGTYPEStimestamp_add_interval written by Dave Cramer.Michael Meskes2004-12-23
| | | | Fixed parsing of defines to make sure they used more than once.
* Use float8-small-is-zero for netbsd on m68k, per Rémi Zara.Tom Lane2004-12-23
|
* Remove extra parenthesis.Tom Lane2004-12-23
|
* Awhile back I added some code to StartupCLOG() to forcibly zero outTom Lane2004-12-22
| | | | | | | | | | the remainder of the current clog page during system startup. While this was a good idea, it turns out the code fails if nextXid is exactly at a page boundary, because we won't have created the "current" clog page yet in that case. Since the page will be correctly zeroed when we execute the first transaction on it, the solution is just to do nothing when exactly at a page boundary. Per trouble report from Dave Hartwig.
* Add '-Wl,' prefix to linker switches consistently. Remove shlib_symbolicTom Lane2004-12-21
| | | | macros, which aren't used anywhere and haven't been for some time.
* exec_eval_simple_expr() needs to do CommandCounterIncrement() not justTom Lane2004-12-21
| | | | | GetTransactionSnapshot() to ensure ActiveSnapshot advances properly. Sigh. Extend regression test so it reveals this error too.
* Add error checking for starting a win32 service using pg_ctl.Bruce Momjian2004-12-21
|
* Return proper error exit code on pg_ctl -w start failure.Bruce Momjian2004-12-21
|
* Translation updatePeter Eisentraut2004-12-21
|
* tag files for rc2REL8_0_0RC2PostgreSQL Daemon2004-12-21
|
* Patch to make libpq.rc be a built-for-distribution file was a fewTom Lane2004-12-21
| | | | bricks shy of a load.
* Mention libpq.rc.in is now the file to update for releases.Bruce Momjian2004-12-20
|
* Ensure that 'disabling statistics collector' is logged in all failureTom Lane2004-12-20
| | | | paths of pgstat_init. Responds to confusion exhibited by Christoph Haller.
* Add support for Latin9 encoding in to_ascii(). Jaime CasanovaTom Lane2004-12-20
|
* Mark the TimeZone parameter as GUC_REPORT, so that JDBC can find outTom Lane2004-12-20
| | | | when it changes. Per request from Kris Jurka.
* In pipe_read_line Windows code, loop to ensure we get a whole lineTom Lane2004-12-20
| | | | | from the child process; fixes observed problems when the returned version number is '8.0.0' rather than '8.0.0rc1'. Magnus Hagander
* Remove direct inclusions of <com_err.h> as well as configure test forTom Lane2004-12-20
| | | | | | | its presence. This amounts to desupporting Kerberos 5 releases 1.0.*, which is small loss, and simplifies use of our Kerberos code on platforms with Red-Hat-style include file layouts. Per gripe from John Gray and followup discussion.
* Adjust pg_resetxlog to handle 8.0 WAL file names properly.Tom Lane2004-12-20
|
* plpgsql's exec_eval_simple_expr() now has to take responsibility forTom Lane2004-12-19
| | | | | | advancing ActiveSnapshot when we are inside a volatile function. Per example from Gaetano Mendola. Add a regression test to catch similar problems in future.
* Prevent evaluation of backticks while discarding unwanted argumentsTom Lane2004-12-19
| | | | | | | | after an unknown or failed psql backslash command, and also while discarding "extra" arguments of a putatively valid backslash command. In the case of an unknown/failed command, make sure we discard the whole rest of the line, rather than trying to resume at the next backslash. Per discussion with Thomer Gil.
* Mention why unixware doesn't handle threading in 8.0.Bruce Momjian2004-12-19
|
* Test for POSIX.1c 2-arg sigwait() and fail on single-arg version.Bruce Momjian2004-12-19
|
* Add Win32 version stamps that increment each day for proper SYSTEM32Bruce Momjian2004-12-19
| | | | DLL pginstaller installs.
* Allow NetBSD, m64k to compile the ASM spinlock code.Bruce Momjian2004-12-18
| | | | R?mi Zara
* Make array_cat more paranoid about checking datatypes in empty arrays.Tom Lane2004-12-17
|
* array_map failed to insert correct result type in an empty array.Tom Lane2004-12-17
| | | | Per example from Florian Pflug.
* In a PGXS build, expect to find the postgres executable already installed,Tom Lane2004-12-17
| | | | rather than in $(top_builddir)/src/backend/postgres. Sean Chittenden
* Allow 'ELSEIF' as an alternative to 'ELSIF' in PL/PgSQL. There have beenNeil Conway2004-12-17
| | | | | | | several reports of users being confused when they attempt to use ELSEIF and run into trouble due to PL/PgSQL's lax parser. The parser will be improved for 8.1, but we can fix most of the problem by allowing ELSEIF for now.
* Hook up the plpython result-object nrows and status methods correctly.Tom Lane2004-12-17
| | | | Adjust documentation to match current reality.
* Fix is-it-time-for-a-checkpoint logic so that checkpoint_segments canTom Lane2004-12-17
| | | | usefully be larger than 255. Per gripe from Simon Riggs.
* Update release changes list to mention pg_config.h.win32.Bruce Momjian2004-12-16
|
* Update version for Win32-client include file.Bruce Momjian2004-12-16
|
* Cause configure --with-tcl to check for presence of <tcl.h>, as perTom Lane2004-12-16
| | | | | gripe from John Gray. Also fix thinko in pltcl Makefile: if a special Tcl include directory is specified, that ought to be searched first.
* Allow --enable-thread-safety with --disable-shared libraries by passingBruce Momjian2004-12-16
| | | | PTHREAD_LIBS to all libpq-usage builds.
* Allow AIX to use --enable-thread-safety by passing PTHREAD_LIBS toBruce Momjian2004-12-16
| | | | binary compiles, and adjust configure tests for AIX.
* Translation updatesPeter Eisentraut2004-12-16
|
* Fix another place broken by new List implementation :-(. Per exampleTom Lane2004-12-15
| | | | | from goranpop@nspoint.net. I think this escaped notice because in simple cases the list is NIL on entry.
* Disallow SETOF in the input of parseTypeString(). Formerly it wasTom Lane2004-12-15
| | | | | | | silently ignored, allowing one to write bizarre things like DECLARE x setof int; in plpgsql. This has misled at least one novice into thinking that plpgsql variables could be sets ...
* Calculation of keys_are_unique flag was wrong for cases involvingTom Lane2004-12-15
| | | | redundant cross-datatype comparisons. Per example from Merlin Moncure.
* New translationsPeter Eisentraut2004-12-15
|