aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* resultmap additions for solaris x86 ...Marc G. Fournier2000-04-07
|
* Use initdb --noclean so that test database is available for examinationTom Lane2000-04-07
| | | | if initdb fails.
* Again update of rule manual page.Bruce Momjian2000-04-07
|
* Update rule examplesBruce Momjian2000-04-07
|
* Remove mention of INSTANCE rule system, because it is gone.Bruce Momjian2000-04-07
|
* Add transcendental math functions (sine, cosine, etc)Thomas G. Lockhart2000-04-07
| | | | | | | | | | | | | | | | Add a random number generator and seed setter (random(), SET SEED) Fix up the interval*float8 math to carry partial months into the time field. Add float8*interval so we have symmetry in the available math. Fix the parser and define.c to accept SQL92 types as field arguments. Fix the parser to accept SQL92 types for CREATE TYPE, etc. This is necessary to allow... Bit/varbit support in contrib/bit cleaned up to compile and load cleanly. Still needs some work before final release. Implement the "SOME" keyword as a synonym for "ANY" per SQL92. Implement ascii(text), ichar(int4), repeat(text,int4) to help support the ODBC driver. Enable the TRUNCATE() function mapping in the ODBC driver.
* Document new SET SEED command.Thomas G. Lockhart2000-04-07
|
* Fix path to initdb in installation instructions.Thomas G. Lockhart2000-04-07
| | | | General cleanup for 7.0.
* Clean up directory to compile and run on my Linux box at least.Thomas G. Lockhart2000-04-07
| | | | Note that there is some trouble with inconsistant input/output formats.
* Commebts & one check in EndEvalPlanQual().Vadim B. Mikheev2000-04-07
|
* Fix (I hope) resource leakage in EvalPlanQual: open subplans must beTom Lane2000-04-07
| | | | | properly shut down in EndPlan, else we fail to free buffers and so forth that they hold.
* Partial fix for EvalPlanQual bugs reported by Magnus Hagander, 3-Apr.Tom Lane2000-04-07
| | | | | | Ensure that outer tuple link needed for inner indexscan qual evaluation gets set in the EvalPlanQual case. This stops coredump, but we still have resource leaks due to failure to clean up EvalPlanQual properly...
* Update initdb display of postmaster startupBruce Momjian2000-04-06
|
* Allow vacuum of temporary tablesBruce Momjian2000-04-06
|
* Add POLLUTE to interfaces/MakefileBruce Momjian2000-04-06
|
* Repair assert failure in tuple-chain-moving logic (introduced by yoursTom Lane2000-04-06
| | | | truly, I'm afraid).
* Update vacuum to mention analyzeBruce Momjian2000-04-05
|
* *** empty log message ***Michael Meskes2000-04-05
|
* Please forget all I said about gcc and AIX in my previous mail.Bruce Momjian2000-04-05
| | | | | | | | | | | | | | | | | It does work with the following patch applied and gcc 2.95.2 . Use --with-template=aix_gcc to compile the whole lot with gcc. The geometry regression test produces different precision. With optimization I run into regression failures starting at oidjoins, thus no -O2. Anybody else try gcc 2.95.2 and -O2 on beta4 ? This is an important patch, since recent versions of the IBM compiler are not for free, and thus most questions I get concern gcc. Andreas PS.: I am testing with beta4
* Solaris geometry results were out of sync with the input filePeter Eisentraut2000-04-05
|
* *** empty log message ***Michael Meskes2000-04-05
|
* Rename geometry.*bsdi to geo.*bsd. for Freebsd.Bruce Momjian2000-04-05
|
* freebsd 4.0 is like bsdi for geometry test ...Marc G. Fournier2000-04-05
|
* freebsd has *-freebsd and *-freebsdelf ... float8 passes with thisMarc G. Fournier2000-04-05
|
* Actually, that still wasn't quite right. If we skip a query because ofTom Lane2000-04-04
| | | | | | xact abort state in pg_exec_query_dest, we should continue scanning the querytree list, on the off chance that one of the later queries in the string is COMMIT or ROLLBACK.
* Fix bug noted by Bruce: FETCH in an already-aborted transaction blockTom Lane2000-04-04
| | | | | | | | | | | would crash, due to premature invocation of SetQuerySnapshot(). Clean up problems with handling of multiple queries by splitting pg_parse_and_plan into two routines. The old code would not, for example, do the right thing with END; SELECT... submitted in one query string when it had been in transaction abort state, because it'd decide to skip planning the SELECT before it had executed the END. New arrangement is simpler and doesn't force caller to plan if only parse+rewrite is needed.
* Remove FETCH syntax heading from MOVE manual page.Bruce Momjian2000-04-04
|
* Remove from FETCH manual page:Bruce Momjian2000-04-04
| | | | | Once all rows are fetched, every other fetch access returns no rows.
* No ID file needed.Bruce Momjian2000-04-04
|
* Update QNX FAQBruce Momjian2000-04-04
|
* Add a check to pg_dump to see whether backend is same version as pg_dump.Tom Lane2000-04-04
| | | | | If not, abort by default. Abort can be prevented by using -i or --ignore-version switch.
* Update regression for bsdi.Bruce Momjian2000-04-04
|
* Correct off-by-one error in strncat() usage.Tom Lane2000-04-04
|
* When rewriting an aggregate introduced into WHERE, allow agg argument toTom Lane2000-04-04
| | | | | | | be an expression not just a simple Var, so long as only one table is referenced (so that code isn't really any more difficult than before). This whole thing is still fundamentally bogus, but at least we can accept a few more cases than before.
* For no good reason at all, libplpgsql was getting linked with libpq.Tom Lane2000-04-04
| | | | Since plpgsql is a backend extension, it doesn't need libpq...
* Fix extremely nasty little bug observed when a sub-SELECT appears inTom Lane2000-04-04
| | | | | | | | | | | | | | | | | | | | WHERE in a place where it can be part of a nestloop inner indexqual. As the code stood, it put the same physical sub-Plan node into both indxqual and indxqualorig of the IndexScan plan node. That confused later processing in the optimizer (which expected that tracing the subPlan list would visit each subplan node exactly once), and would probably have blown up in the executor if the planner hadn't choked first. Fix by making the 'fixed' indexqual be a complete deep copy of the original indexqual, rather than trying to share nodes below the topmost operator node. This had further ramifications though, because we were making the aforesaid list of sub-Plan nodes during SS_process_sublinks which is run before construction of the 'fixed' indexqual, meaning that the copy of the sub-Plan didn't show up in that list. Fix by rearranging logic so that the sub-Plan list is built by the final set_plan_references pass, not in SS_process_sublinks. This may sound like a mess, but it's actually a good deal cleaner now than it was before, because we are no longer dependent on the assumption that planning will never make a copy of a sub-Plan node.
* Augment the function call map logic with code from Tom Lane.Thomas G. Lockhart2000-04-04
| | | | | | | Should be more robust to overflows. Pass through an unmapped function unchanged, rather than rejecting it. Add a few more functions, but comment out those which can go through as-is. Can be used with contrib/odbc/ package, though that isn't committed yet.
* Hi,Bruce Momjian2000-04-03
| | | | | | | | | | | here is an updated version of the bit type with a bugfix and all the necessa ry SQL functions defined. This should replace what is currently in contrib. I'd appreciate any comments on what is there. Kind regards, Adriaan
* *** empty log message ***Michael Meskes2000-04-03
|
* Looks like Peter forgot to commit configure with configure.in.Tom Lane2000-04-03
|
* Copy-editing, mostly.Tom Lane2000-04-02
|
* Mention DST boundaries as a possible cause of regress test failure.Tom Lane2000-04-02
|
* *** empty log message ***Michael Meskes2000-04-02
|
* Adjusted for new (again!) config.guess output under QNXPeter Eisentraut2000-03-31
|
* Fix low-probability bug in relcache startup: write_irels wrote theTom Lane2000-03-31
| | | | | | | | | | pg_internal.init file in-place, which meant that if another backend started at about the same time, it might read the incomplete file. init_irels tries to guard against that, but I have now seen a crash due to reading bad data from a partly-written file. (This may indicate a kernel bug on my platform? Not sure.) Anyway, clearly the safest course is to write the new pg_internal.init file under a unique temporary filename, and rename it into place only after it's all written.
* Correct typo.Tom Lane2000-03-31
|
* Improve wording a little bit.Tom Lane2000-03-31
|
* Update index cost estimation docs to final 7.0 scheme.Tom Lane2000-03-31
|
* Minor copy-editing.Tom Lane2000-03-31
|
* CREATE AGGREGATE ref page claimed that a noise-word AS was allowed inTom Lane2000-03-31
| | | | the syntax ... but gram.y doesn't think so.