aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* Update make_mkid for mkid version 4.0.Bruce Momjian2000-03-31
|
* Make discussion of names clearer and more accurate.Tom Lane2000-03-30
|
* Remove PL/perl language chapter, since it shows up in the User's Guide.Thomas G. Lockhart2000-03-30
|
* Accumulated fixups.Thomas G. Lockhart2000-03-30
| | | | | | | Add some chapters on new topics. Change to referencing OASIS/Docbook v3.1 rather than Davenport/Docbook v3.0 Grepped for and fixed apparent tag mangling from emacs "Normalize" operation. Should be the last of those.
* Renamed from bug-reports.sgml. Not all problems are bugs ;)Thomas G. Lockhart2000-03-30
|
* Writeup from Tom Lane on how costs are estimated.Thomas G. Lockhart2000-03-30
|
* Hints on how to fill a database.Thomas G. Lockhart2000-03-30
|
* Add reference to the original Postgres papers at a UCB web site.Thomas G. Lockhart2000-03-30
|
* Small emacs fixup for catalogs.Thomas G. Lockhart2000-03-30
|
* Split off language-specific docs to their own chapters.Thomas G. Lockhart2000-03-30
| | | | | | Add PL/perl docs from Mark Hollomon. Put language-specific docs into the User's Guide, and move the rest to the Programmer's Guide.
* *** empty log message ***Michael Meskes2000-03-30
|
* alpha-dec-osf host pattern must become alpha.*-dec-osf to matchTom Lane2000-03-30
| | | | newer Alpha platforms.
* Update alternate float8 output files to match current float8.sql.Tom Lane2000-03-30
|
* Update numeric_big regress test for 7.0. This has apparently beenTom Lane2000-03-30
| | | | broken almost since the word go ... I guess no one ever ran it ...
* Enable more flexible syntax for the SET command. Now allows single floats,Thomas G. Lockhart2000-03-30
| | | | | | single integers, and lists of names, without surrounding them with quotes. Remove all tokens which are defined as operators from ColID and ColLabel to avoid precedence confusion. Thanks to Tom Lane for catching this.
* Makefile should not pre-empt user's decision about whetherTom Lane2000-03-30
| | | | | to use -g ... especially not when this can cause real problems on some platforms ...
* Unixware fix for new config.guess output,Tom Lane2000-03-30
| | | | from Bill.Allie@mug.org.
* Make use of configure symbols for unportable constructs. MakeTom Lane2000-03-30
| | | | inclusions of system headers more consistent.
* Autoconf.Tom Lane2000-03-30
|
* Add configure checks to see if 'using namespace std' andTom Lane2000-03-30
| | | | '#include <string>' work in the local C++ compiler.
* Change cross reference to CREATE AGGREGATE to a citation, since theThomas G. Lockhart2000-03-30
| | | | | Programmer's Guide does not have access to the reference page. Normalize markup.
* Remove extraneous semicolon.Tom Lane2000-03-30
|
* Replace refs to v6.6 with v7.0.Tom Lane2000-03-30
|
* Tweak indexscan cost estimation: round estimated # of tuples visited upTom Lane2000-03-30
| | | | | | | to next integer. Previously, if selectivity was small, we could compute very tiny scan cost on the basis of estimating that only 0.001 tuple would be fetched, which is silly. This naturally led to some rather silly plans...
* Added latest config.guess and config.subPeter Eisentraut2000-03-29
|
* Change rules for interpreting date/time input to disallow 1 and 3 characterThomas G. Lockhart2000-03-29
| | | | years. Rejects dates like '0.085', which were accepted previously.
* Change rules for interpreting date/time input to disallow 1 and 3 characterThomas G. Lockhart2000-03-29
| | | | | years. Rejects dates like '0.085', which were accepted previously. Minor mods of ODBC markup.
* Fix markup for terminology.Thomas G. Lockhart2000-03-28
|
* Add mention of join syntax to release notes, and reformat a few lines.Thomas G. Lockhart2000-03-28
| | | | | Update porting info. Still need a lot of platforms tested. Fix small errors in markup.
* Update SGML catalog references to DocBook 3.1 on FreeBSD.Thomas G. Lockhart2000-03-28
| | | | Matches postgresql.org/hub.org environment.
* Small improvements to user's guide description of arrays.Tom Lane2000-03-28
|
* Oops, missed some < and > that need to be &lt; and &gt; ...Tom Lane2000-03-28
|
* Clean up major bogosity in description of creating a new index operatorTom Lane2000-03-28
| | | | | | class. This chapter was apparently sewed together from several inconsistent examples... and perhaps from old docs that no longer apply at all.
* Add a little to index operator class discussion.Tom Lane2000-03-28
|
* Fix some bogosity in the tutorial examples.Tom Lane2000-03-28
|
* Allow compile to finish even if plperl fails, which it does now.Bruce Momjian2000-03-27
|
* Fixed bug with repeated \e in psql (failed to clear buffers correctly)Peter Eisentraut2000-03-27
|
* Start updating for the v7.0 release.Thomas G. Lockhart2000-03-27
| | | | | Use "generic functions" for math and other routines. Use SQL92 "type 'literal'" syntax rather than Postgres "'literal'::type".
* Allow full type names in CREATE FUNCTION arguments and return type.Thomas G. Lockhart2000-03-27
| | | | | | | Move CREATE FUNCTION/WITH clause to end of statement to get around shift/reduce conflicts with type names containing "WITH". Add lots of tokens as allowed ColId's and/or ColLabel's, so this should be a complete set for the v7.0 release.
* Fix up comments where had been uglified by the automated reformatter.Thomas G. Lockhart2000-03-27
|
* Change form of query which used "DISTINCT ON" to help support primary keys.Thomas G. Lockhart2000-03-27
| | | | | | We still have an internal limit in the ODBC code of 8 columns per key, but this should lay the groundwork for resolving that. Includes reformulated query from Tom Lane.
* Add html FAQ and FAQ_DEV sourcesBruce Momjian2000-03-27
|
* Enhance pg_ctl so that it prints error messages from postmasterTatsuo Ishii2000-03-27
| | | | if it fails to start up it (this is only vaild if -w is given).
* Update obsolete statement that indexes can have only 7 columns.Tom Lane2000-03-26
| | | | Reorganize description of index features for more clarity.
* Update/improve documentation about creating aggregate functions.Tom Lane2000-03-26
|
* nodeAgg has always been willing to accept an aggregate with a finalFuncTom Lane2000-03-26
| | | | | and only one transition state, but the CREATE AGGREGATE code rejected this combination.
* Updated user's guide to match new psql's output formatPeter Eisentraut2000-03-26
| | | | Fixed bug in createdb/alternative location
* Improve descriptions of postmaster switches.Tom Lane2000-03-26
|
* Rearrange steps in recommended install procedure to something moreTom Lane2000-03-26
| | | | | | reasonable, ie configure and build first, then optionally run regress tests using new parallel (non-installed) test method, and only then backup and kill old installation.
* Add description of new parallel regression testing method; updateTom Lane2000-03-26
| | | | procedure to cover running either test script; other minor improvements.