summaryrefslogtreecommitdiff
path: root/src/backend
Commit message (Expand)AuthorAgeFilesLines
* Ye-old pgindent run. Same 4-space tabs.Bruce Momjian2000-04-12220-13198/+15998
* Fix assert with missing semicolonBruce Momjian2000-04-121-2/+2
* Tweak smgrblindwrt per advice from Vadim: add parameter indicatingTom Lane2000-04-104-131/+88
* The constant in backend/utils/misc/trace.c, line 32 limits the length ofBruce Momjian2000-04-101-1/+1
* Fix an Assert bug(was my fault) pointed out by Tom Lane.Hiroshi Inoue2000-04-101-3/+8
* Buffer manager modifications to keep a local buffer-dirtied bit as wellTom Lane2000-04-098-408/+900
* Further tweaking of indexscan cost estimates.Tom Lane2000-04-092-6/+18
* Add new pg_options.sample file.Bruce Momjian2000-04-082-2/+254
* Tweak TypeCategory to treat new BIT types as of STRING category, ratherTom Lane2000-04-081-1/+14
* Fix relcache refcount leakage when inv_drop is appliedTom Lane2000-04-081-3/+13
* Add zpbit and varbit data types from Adrian JoubertThomas G. Lockhart2000-04-082-2/+942
* Add copyObject logic for TruncateStmt and a few other utility-statementTom Lane2000-04-081-17/+148
* Update create_rule manual page.Bruce Momjian2000-04-071-93/+360
* Add transcendental math functions (sine, cosine, etc)Thomas G. Lockhart2000-04-077-180/+561
* Commebts & one check in EndEvalPlanQual().Vadim B. Mikheev2000-04-071-4/+10
* Fix (I hope) resource leakage in EvalPlanQual: open subplans must beTom Lane2000-04-071-1/+41
* Partial fix for EvalPlanQual bugs reported by Magnus Hagander, 3-Apr.Tom Lane2000-04-072-33/+27
* Allow vacuum of temporary tablesBruce Momjian2000-04-061-3/+10
* Repair assert failure in tuple-chain-moving logic (introduced by yoursTom Lane2000-04-061-10/+26
* Actually, that still wasn't quite right. If we skip a query because ofTom Lane2000-04-041-24/+11
* Fix bug noted by Bruce: FETCH in an already-aborted transaction blockTom Lane2000-04-045-163/+114
* When rewriting an aggregate introduced into WHERE, allow agg argument toTom Lane2000-04-041-11/+14
* Fix extremely nasty little bug observed when a sub-SELECT appears inTom Lane2000-04-045-131/+188
* Fix low-probability bug in relcache startup: write_irels wrote theTom Lane2000-03-311-4/+23
* Get rid of SetBufferWriteMode(), which was an accident waiting to happen.Tom Lane2000-03-312-67/+35
* New coding for SET provoked a 'var might be used uninitialized' warningTom Lane2000-03-311-20/+11
* Enable more flexible syntax for the SET command. Now allows single floats,Thomas G. Lockhart2000-03-301-24/+94
* Tweak indexscan cost estimation: round estimated # of tuples visited upTom Lane2000-03-302-8/+10
* Change rules for interpreting date/time input to disallow 1 and 3 characterThomas G. Lockhart2000-03-291-4/+13
* Allow full type names in CREATE FUNCTION arguments and return type.Thomas G. Lockhart2000-03-271-75/+156
* nodeAgg has always been willing to accept an aggregate with a finalFuncTom Lane2000-03-261-47/+56
* Updated user's guide to match new psql's output formatPeter Eisentraut2000-03-261-12/+15
* transformCreateStmt should put Ident nodes, not ColumnDef nodes, intoTom Lane2000-03-242-32/+36
* Save a few cycles in simple cases: no need to call cost_sort() when thereTom Lane2000-03-241-8/+8
* outfuncs.c was missing a print routine for Material plan nodes, leadingTom Lane2000-03-241-1/+18
* Rename bytea functions to not have upper-case letters in their names.Tom Lane2000-03-241-52/+63
* A little further tweaking of the range-query selectivity logic:Tom Lane2000-03-231-13/+25
* >> 5. empty define that results in an empty but terminated line ( ; )Bruce Momjian2000-03-231-2/+4
* Hmm, absolute pathnames for the copy makes sense. I'll whip up thatBruce Momjian2000-03-231-1/+6
* Float-to-int conversion functions should return NULL when given NULLTom Lane2000-03-231-9/+9
* Remove no-longer-necessary restriction against uplevel correlation varsTom Lane2000-03-233-33/+23
* Hack parse_coerce so it won't try to constant-fold the dummy ConstTom Lane2000-03-231-5/+10
* ExecSubPlan needs to be able to cope with RelabelType nodes atop theTom Lane2000-03-231-8/+20
* If we cannot get a real estimate for the selectivity of a range query,Tom Lane2000-03-231-3/+5
* Improve selectivity estimation involving string constants: pay attentionTom Lane2000-03-231-28/+96
* Repair logic flaw in cost estimator: cost_nestloop() was estimating CPUTom Lane2000-03-229-59/+72
* Add syntax for BIT() and BIT VARYING(), but no underlying implementationThomas G. Lockhart2000-03-212-8/+49
* Restructure planning code so that preprocessing of targetlist and qualsTom Lane2000-03-216-156/+182
* Correct typo in error message.Tom Lane2000-03-211-2/+2
* Reverse out BYTEA type coersion.Bruce Momjian2000-03-202-5/+2