aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
...
* $Header: -> $PostgreSQL Changes ...PostgreSQL Daemon2003-11-29
|
* Conditionalize variable that is only used conditionally, to avoid warning.Peter Eisentraut2003-11-27
|
* Second try at fixing no-room-to-move-down PANIC in compact_fsm_storage.Tom Lane2003-11-26
| | | | | | Ward's report that it can still happen in RC2 forces me to realize that this is not a can't-happen condition after all, and that the compaction code had better cope rather than panicking.
* Cast field-length variables used in printf to int, because sometimesPeter Eisentraut2003-11-26
| | | | they might be of a wider type.
* Repair subselect.c's occasional assignment of the wrong vartypmod toTom Lane2003-11-25
| | | | | | | Vars created to fill subplan args lists. This is an ancient error, going back at least to 7.0, but is more easily triggered in 7.4 than before because we no longer compare varlevelsup when deciding whether a Param slot can be re-used. Fixes bug reported by Klint Gore.
* Get rid of hashkeys field of Hash plan node, since it's redundant withTom Lane2003-11-25
| | | | | | the hashclauses field of the parent HashJoin. This avoids problems with duplicated links to SubPlans in hash clauses, as per report from Andrew Holm-Hansen.
* New translationPeter Eisentraut2003-11-25
|
* More adjustment of error messagesPeter Eisentraut2003-11-25
|
* Install all the headers files that the ones that are already installedPeter Eisentraut2003-11-25
| | | | depend on.
* Avoid using string literal with embedded newline.Tom Lane2003-11-24
|
* Overdue code review for ALTER SEQUENCE patch. Don't generate illegal NodeTom Lane2003-11-24
| | | | | | tree for CYCLE option; don't assume zeros are invalid values for sequence fields other than increment_by; don't reset cache_value when not told to; simplify code for testing whether to apply defaults.
* Repair missed renamings of show_statement_stats and show_executor_stats.Tom Lane2003-11-24
|
* Rename USE_THREADS to ENABLE_THREAD_SAFETY to avoid name clash with Perl.Peter Eisentraut2003-11-24
| | | | | Fixes compilation failure with --enable-thread-safety --with-perl and Perl 5.6.1.
* Make the messages and the options parsing a bit more standard.Peter Eisentraut2003-11-23
|
* Add maintainer-clean target.Peter Eisentraut2003-11-23
|
* Add NLS support.Peter Eisentraut2003-11-23
|
* COMMENT ON casts, conversions, languages, operator classes, andTom Lane2003-11-21
| | | | | | | | | large objects. Dump all these in pg_dump; also add code to pg_dump user-defined conversions. Make psql's large object code rely on the backend for inserting/deleting LOB comments, instead of trying to hack pg_description directly. Documentation and regression tests added. Christopher Kings-Lynne, code reviewed by Tom
* Remove unused variable.Tom Lane2003-11-21
|
* Background writer processJan Wieck2003-11-19
| | | | | | | | This first part of the background writer does no syncing at all. It's only purpose is to keep the LRU heads clean so that regular backends seldom to never have to call write(). Jan
* Fixed typo in create schema parsing.Michael Meskes2003-11-19
|
* Add FreeBSD mention for initdb.c.Bruce Momjian2003-11-17
|
* Fix datetime input parsing to accept YYYY-MONTHNAME-DD and related syntaxes,Tom Lane2003-11-16
| | | | | | which had been unintentionally broken by recent changes to tighten up the DateStyle rules for all-numeric date input. Add documentation and regression tests for this, too.
* Changed parameter name for shared cache status report interval toJan Wieck2003-11-16
| | | | | | | | | debug_shared_buffers = <seconds> as per previous discussion. Jan
* Make creation of statistics collection socket more robust, by allowing itTom Lane2003-11-15
| | | | | to try additional addresses returned from getaddrinfo() if the first one fails at the bind() or connect() steps. Per yesterday's discussion.
* Translation updatesPeter Eisentraut2003-11-14
|
* Try to improve error handling for failures of backend subprocess.Tom Lane2003-11-14
|
* Add CHECK_FOR_INTERRUPTS() to bootstrap command loop, so that control-CTom Lane2003-11-14
| | | | can terminate the bootstrap run.
* Add fflush() before popen() calls; avoids any possible problem withTom Lane2003-11-14
| | | | double or out-of-sequence output with child process.
* Add missing logic to handle fixing permissions on an already-existingTom Lane2003-11-14
| | | | | | data directory. Also fix handling of error conditions associated with data directory checking step (can't use a boolean to distinguish four possible result states...)
* Added documentation for the new interface between the buffer managerJan Wieck2003-11-14
| | | | | | | and the cache replacement strategy as well as a description of the ARC algorithm and the special tailoring of that done for PostgreSQL. Jan
* Translation updatesPeter Eisentraut2003-11-14
|
* Preliminary code review for C version of initdb. Re-centralize handlingTom Lane2003-11-13
| | | | | | | | of option switches for backend, fix handling of COPY from data files so that we won't have the newline-after-\. issue back again, add back some comments and printouts lost from the shell script, etc. Still needs work for error handling; in particular the shell version worked much more nicely for the case of a postgres executable that fails on invocation.
* Dunno why this got committed with DOS newlines, but fix that, andTom Lane2003-11-13
| | | | add a header comment/copyright notice.
* Silly to copy sprompt.c from src/port when we're linking libpgport anyway.Tom Lane2003-11-13
|
* pgindent new initdb.c from Tom.Bruce Momjian2003-11-13
|
* Regenerate text files.Peter Eisentraut2003-11-13
|
* Add owner description to initdb C code.Bruce Momjian2003-11-13
| | | | Andrew Dunstan
* 2nd try for the ARC strategy.Jan Wieck2003-11-13
| | | | | | | | | I added a couple more Assertions while tracking down the exact cause of the former bug. All 93 regression tests pass now. Jan
* ARC strategy backed out ... sorryJan Wieck2003-11-13
| | | | Jan
* Update for 7.4 release.Bruce Momjian2003-11-13
|
* Add fflush() calls so that I'm-about-to-do-this messages actuallyTom Lane2003-11-13
| | | | come out before the action is done.
* Fix lack of optreset.Tom Lane2003-11-13
|
* Replacement of the buffer replacement strategy with an ARCJan Wieck2003-11-13
| | | | | | algorithm adopted for PostgreSQL. Jan
* AcceptResult() was missing a case for PGRES_EMPTY_QUERY --- probablyTom Lane2003-11-12
| | | | | my fault. Adding it fixes bogus message display when reading a block comment at the end of a script file.
* Cross-data-type comparisons are now indexable by btrees, pursuant to myTom Lane2003-11-12
| | | | | | | | | | pghackers proposal of 8-Nov. All the existing cross-type comparison operators (int2/int4/int8 and float4/float8) have appropriate support. The original proposal of storing the right-hand-side datatype as part of the primary key for pg_amop and pg_amproc got modified a bit in the event; it is easier to store zero as the 'default' case and only store a nonzero when the operator is actually cross-type. Along the way, remove the long-since-defunct bigbox_ops operator class.
* Cleanup for recent .exe Win32 fix.Bruce Momjian2003-11-12
|
* Update /port C header descriptions.Bruce Momjian2003-11-11
|
* Add .exe to Win32 stat calls. Don't symlink postmaster on Win32.Bruce Momjian2003-11-11
|
* Add system_views.sql to CVS.Bruce Momjian2003-11-11
|
* Move system_views.sql into backend/catalog, per Tom.Bruce Momjian2003-11-11
|