summaryrefslogtreecommitdiff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* Treat procedural languages as owned by the bootstrap superuser, ratherTom Lane2005-12-033-23/+54
* Fix out-of-order inclusion of -L switches from LDFLAGS on AIX and HPUX.Tom Lane2005-12-031-3/+6
* Allow to_char(interval) and to_char(time) to use AM/PM specifications.Bruce Momjian2005-12-031-20/+16
* Tweak indexscan machinery to avoid taking an AccessShareLock on an indexTom Lane2005-12-0312-35/+95
* Fix obsolete comment.Tom Lane2005-12-021-2/+2
* Adjust scan plan nodes to avoid getting an extra AccessShareLock on aTom Lane2005-12-029-92/+135
* Added special handling of CONNECTION variable that is used by ECPG instead of...Michael Meskes2005-12-023-13/+33
* Remove comment on errno=0 lines, but add mention to port/strtol.c function.Bruce Momjian2005-12-024-26/+35
* Rearrange code in ExecInitBitmapHeapScan so that we don't initialize theTom Lane2005-12-021-6/+10
* Add comment to pg_atoi.Bruce Momjian2005-12-011-2/+2
* Comment "errno = 0" in a more generic way.Bruce Momjian2005-12-012-24/+24
* Retry in FileRead and FileWrite if Windows returns ERROR_NO_SYSTEM_RESOURCES.Tom Lane2005-12-011-3/+58
* Add comments about why errno is set to zero.Bruce Momjian2005-12-012-24/+24
* Check for overflow in strtol() while parsing datetime inputs.Tom Lane2005-12-011-1/+33
* Refactor some bits in aclchk.c in order to reduce code duplication.Alvaro Herrera2005-12-013-413/+310
* Rearrange code in pg_atoi() to avoid assuming that isspace() cannotTom Lane2005-11-301-15/+15
* Tweak choose_bitmap_and() heuristics in the light of example provided in bugTom Lane2005-11-301-8/+54
* - Made several variables "const char *" instead of "char *" as proposed by Qi...Michael Meskes2005-11-308-40/+49
* Fix EXPLAIN and EXECUTE commands to pass portal parameters through toTom Lane2005-11-295-21/+29
* Tweak hash join code to use an additional heuristic for deciding whetherTom Lane2005-11-282-5/+42
* Come to think of it, the backend doesn't use -lz either.Tom Lane2005-11-281-3/+3
* Don't link readline and supporting libraries into the backend.Tom Lane2005-11-281-1/+4
* Install a more future-proof fix for the snapshot-unset bug just found.Alvaro Herrera2005-11-281-9/+7
* Recent changes to allow hash join to exit early given empty input fromTom Lane2005-11-281-30/+20
* Set a snapshot before running analyze on a single table, to avoid aAlvaro Herrera2005-11-281-1/+9
* Install pg_regress where PGXS' "make installcheck" can find it.Alvaro Herrera2005-11-282-2/+9
* Change the parser to translate "foo [NOT] IN (expression-list)" toTom Lane2005-11-285-103/+212
* Teach predtest.c how to reason about ScalarArrayOpExpr clauses as thoughTom Lane2005-11-271-258/+661
* Add missing semicolon. Recent versions of bison seem to choke on this,Tom Lane2005-11-271-1/+2
* Teach tid-scan code to make use of "ctid = ANY (array)" clauses, so thatTom Lane2005-11-2615-147/+378
* Teach push_nots() how to negate a ScalarArrayOpExpr. In passing, saveTom Lane2005-11-261-6/+35
* Some marginal additional hacking to shave a few more cycles offTom Lane2005-11-261-134/+123
* Change seqscan logic so that we check visibility of all tuples on a pageTom Lane2005-11-266-275/+617
* Teach planner and executor to handle ScalarArrayOpExpr as an indexableTom Lane2005-11-2512-318/+942
* Improve ExecStoreTuple to be smarter about replacing the contents ofTom Lane2005-11-255-55/+33
* Get rid of ExecAssignResultTypeFromOuterPlan() and make all plan node typesTom Lane2005-11-238-31/+14
* Fix problems with rewriter failing to set Query.hasSubLinks when insertingTom Lane2005-11-234-6/+125
* Fix pgindent of libpq-fe.h by hacking pgindent script.Bruce Momjian2005-11-232-2/+10
* Fix up comment munged by pg_indent. (Not pg_indent's fault; should haveTom Lane2005-11-221-13/+22
* Re-run pgindent, fixing a problem where comment lines after a blankBruce Momjian2005-11-22240-2554/+2583
* DROP DATABASE IF EXISTS variantAndrew Dunstan2005-11-227-12/+39
* Implement DROP OWNED and REASSIGN OWNED. These new commands facilitate theAlvaro Herrera2005-11-2127-375/+1338
* Clean up after DROP IF EXISTS patch.Tom Lane2005-11-202-2/+4
* Remove the t_datamcxt field of HeapTupleData. This was introduced forTom Lane2005-11-2013-66/+24
* Modify tuptoaster's API so that it does not try to modify the passedTom Lane2005-11-204-101/+124
* Stopgap solution for problem reported by Alexey Beschiokov: afterTom Lane2005-11-191-7/+27
* Change array comparison rules to consider dimensionality information,Tom Lane2005-11-191-9/+33
* DROP objecttype IF EXISTS for the following objects:Andrew Dunstan2005-11-1914-59/+322
* Change array_push and array_cat so that they retain the lower bound ofTom Lane2005-11-192-17/+21
* Fix performance issue in exprTypmod(): for a COALESCE expression, itTom Lane2005-11-181-3/+11