Age | Commit message (Collapse) | Author | |
---|---|---|---|
2000-03-30 | Tweak indexscan cost estimation: round estimated # of tuples visited up | Tom Lane | |
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... | |||
2000-03-29 | Added latest config.guess and config.sub | Peter Eisentraut | |
2000-03-29 | Change rules for interpreting date/time input to disallow 1 and 3 character | Thomas G. Lockhart | |
years. Rejects dates like '0.085', which were accepted previously. | |||
2000-03-29 | Change rules for interpreting date/time input to disallow 1 and 3 character | Thomas G. Lockhart | |
years. Rejects dates like '0.085', which were accepted previously. Minor mods of ODBC markup. | |||
2000-03-28 | Fix markup for terminology. | Thomas G. Lockhart | |
2000-03-28 | Add mention of join syntax to release notes, and reformat a few lines. | Thomas G. Lockhart | |
Update porting info. Still need a lot of platforms tested. Fix small errors in markup. | |||
2000-03-28 | Update SGML catalog references to DocBook 3.1 on FreeBSD. | Thomas G. Lockhart | |
Matches postgresql.org/hub.org environment. | |||
2000-03-28 | Small improvements to user's guide description of arrays. | Tom Lane | |
2000-03-28 | Oops, missed some < and > that need to be < and > ... | Tom Lane | |
2000-03-28 | Clean up major bogosity in description of creating a new index operator | Tom Lane | |
class. This chapter was apparently sewed together from several inconsistent examples... and perhaps from old docs that no longer apply at all. | |||
2000-03-28 | Add a little to index operator class discussion. | Tom Lane | |
2000-03-28 | Fix some bogosity in the tutorial examples. | Tom Lane | |
2000-03-27 | Allow compile to finish even if plperl fails, which it does now. | Bruce Momjian | |
2000-03-27 | Fixed bug with repeated \e in psql (failed to clear buffers correctly) | Peter Eisentraut | |
2000-03-27 | Start updating for the v7.0 release. | Thomas G. Lockhart | |
Use "generic functions" for math and other routines. Use SQL92 "type 'literal'" syntax rather than Postgres "'literal'::type". | |||
2000-03-27 | Allow full type names in CREATE FUNCTION arguments and return type. | Thomas G. Lockhart | |
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. | |||
2000-03-27 | Fix up comments where had been uglified by the automated reformatter. | Thomas G. Lockhart | |
2000-03-27 | Change form of query which used "DISTINCT ON" to help support primary keys. | Thomas G. Lockhart | |
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. | |||
2000-03-27 | Add html FAQ and FAQ_DEV sources | Bruce Momjian | |
2000-03-27 | Enhance pg_ctl so that it prints error messages from postmaster | Tatsuo Ishii | |
if it fails to start up it (this is only vaild if -w is given). | |||
2000-03-26 | Update obsolete statement that indexes can have only 7 columns. | Tom Lane | |
Reorganize description of index features for more clarity. | |||
2000-03-26 | Update/improve documentation about creating aggregate functions. | Tom Lane | |
2000-03-26 | nodeAgg has always been willing to accept an aggregate with a finalFunc | Tom Lane | |
and only one transition state, but the CREATE AGGREGATE code rejected this combination. | |||
2000-03-26 | Updated user's guide to match new psql's output format | Peter Eisentraut | |
Fixed bug in createdb/alternative location | |||
2000-03-26 | Improve descriptions of postmaster switches. | Tom Lane | |
2000-03-26 | Rearrange steps in recommended install procedure to something more | Tom Lane | |
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. | |||
2000-03-26 | Add description of new parallel regression testing method; update | Tom Lane | |
procedure to cover running either test script; other minor improvements. | |||
2000-03-26 | Update descriptions of configure's options, and document how to specify | Tom Lane | |
multiple directories for --with-includes or --with-libraries. | |||
2000-03-26 | Fix erroneous claim that 'postmaster -S' leaves the postmaster running | Tom Lane | |
in the foreground --- in fact, it auto-detaches. | |||
2000-03-26 | Update initdb flags. | Bruce Momjian | |
2000-03-26 | Change resultmap: | Tatsuo Ishii | |
powerpc-unknown-linux-gnu --> powerpc-unknown-linux-gnulibc1 this is because for new config.guess. | |||
2000-03-26 | New platform specific geometry regression expected file for | Tatsuo Ishii | |
powerpc-linux-gnulibc1. | |||
2000-03-26 | Remove some results from int4-not-representable.out | Tatsuo Ishii | |
This is due to the changes made to int4.sql. < SELECT dsqrt(float8 '64') AS eight; < eight < ------- < 8 < (1 row) < < SELECT |/float8 '64' AS eight; < eight < ------- < 8 < (1 row) < < SELECT ||/float8 '27' AS three; < three < ------- < 3 < (1 row) < | |||
2000-03-26 | Make configure --help produce slightly more useful and consistently- | Tom Lane | |
formatted descriptions of --with options. | |||
2000-03-26 | In PQnotifies discussion, reference PQsocket as function needed to get | Tom Lane | |
file descriptor number for select(). (Suggestion from Ken Wright.) | |||
2000-03-26 | Attached is the regression diff for geometry, RedHat 6.1 on a Pentium | Bruce Momjian | |
200 MMX. I was going through my e-mail, cleaning out my 1000+ message inbox, and found this one. Sorry. -- Lamar Owen | |||
2000-03-25 | Remove bogus complexity from build/install of plperl. This stuff was | Tom Lane | |
apparently copied from the makefile for the perl5 interface module, which needs it for reasons explained in src/interfaces/Makefile. But none of those reasons apply to plperl. | |||
2000-03-25 | Old patch from Mark Hollomon to add plperl to createlang's repertoire. | Tom Lane | |
Seems to have slipped through the cracks. | |||
2000-03-25 | Another fix for old shells. | Tom Lane | |
2000-03-25 | Fix syntax error reported by old shells ("if ! command..." is a | Tom Lane | |
neologism, apparently). | |||
2000-03-25 | More >&1 cleanups | Bruce Momjian | |
2000-03-25 | More changes of >& to 2>&1 | Bruce Momjian | |
2000-03-25 | Remove >& and make it 2>&1 | Bruce Momjian | |
2000-03-25 | Add POLLUTE=1 to perl Makefile.PL creations. | Bruce Momjian | |
2000-03-24 | transformCreateStmt should put Ident nodes, not ColumnDef nodes, into | Tom Lane | |
keys lists of Constraint nodes. This eliminates a type pun that would probably have caused trouble someday, and eliminates circular references in the parsetree that were causing trouble now. Also, change parser's uses of strcasecmp() to strcmp(). Since scan.l has downcased any unquoted identifier, it is never correct to check an identifier with strcasecmp() in the parser. For example, CREATE TABLE FOO (f1 int, UNIQUE("F1")); was accepted, which is wrong, and xlateSqlFunc did more than it should: select datetime(); ERROR: Function 'timestamp()' does not exist (good) select "DateTime"(); ERROR: Function 'timestamp()' does not exist (bad) | |||
2000-03-24 | Improve comment. | Tom Lane | |
2000-03-24 | Save a few cycles in simple cases: no need to call cost_sort() when there | Tom Lane | |
is no presorted path to compare with. | |||
2000-03-24 | Remove -O2 for aix. | Bruce Momjian | |
2000-03-24 | Move LOCK terms down. | Bruce Momjian | |
2000-03-24 | outfuncs.c was missing a print routine for Material plan nodes, leading | Tom Lane | |
to trouble when trying to EXPLAIN VERBOSE a plan containing one. |