summaryrefslogtreecommitdiff
path: root/src/backend
Commit message (Expand)AuthorAgeFilesLines
* Fix recoveryLastXTime logic so that it actually does what one would expect.Tom Lane2008-10-301-4/+12
* Support for Sun Studio compiler on LinuxPeter Eisentraut2008-10-293-9/+27
* Update on array features supportPeter Eisentraut2008-10-291-4/+4
* Since SQL:2003, the array size specification in the SQL ARRAY syntax hasPeter Eisentraut2008-10-291-3/+13
* Unicode escapes in strings and identifiersPeter Eisentraut2008-10-294-34/+220
* Be more tense about not creating tuplestores with randomAccess = true unlessTom Lane2008-10-295-14/+34
* Extend ExecMakeFunctionResult() to support set-returning functions that returnTom Lane2008-10-284-131/+364
* Change WorkTableScan to not support backward scan. The apparent supportTom Lane2008-10-282-9/+13
* Arrange to squeeze out the MINIMAL_TUPLE_PADDING in the tuple representationTom Lane2008-10-282-21/+35
* Add WITH [NO] DATA clause to CREATE TABLE AS, per SQL.Peter Eisentraut2008-10-283-30/+22
* Remove support for (insecure) crypt authentication.Magnus Hagander2008-10-284-64/+9
* Downgrade can't-happen error reports to elog().Alvaro Herrera2008-10-271-11/+6
* No need for extra code to log freezing zero tuples. Callers already check thatAlvaro Herrera2008-10-271-11/+5
* Make hba parsing error messages more specific.Magnus Hagander2008-10-271-27/+66
* Install a more robust solution for the problem of infinite error-processingTom Lane2008-10-273-31/+77
* SQL:2008 syntax CURRENT_CATALOG, CURRENT_SCHEMA, SET CATALOG, SET SCHEMA.Peter Eisentraut2008-10-273-6/+51
* Allow EXPLAIN on CREATE TABLE AS.Peter Eisentraut2008-10-271-1/+2
* Feature list updatePeter Eisentraut2008-10-271-2/+2
* Better solution to the IN-list issue: instead of having an arbitrary cutoff,Tom Lane2008-10-261-34/+30
* Be a little smarter about qual handling for semi-joins: a qual that mentionsTom Lane2008-10-251-10/+17
* Add a heuristic to transformAExprIn() to make it prefer expanding "x IN (list)"Tom Lane2008-10-252-15/+35
* Reduce the memory footprint of large pending-trigger-event lists, as per myTom Lane2008-10-241-324/+513
* Replace now unnecessary goto statements by using return directly.Magnus Hagander2008-10-241-14/+12
* Remove a "TODO-list" structure at the top of the file, referring backMagnus Hagander2008-10-241-27/+1
* Remove large parts of the old SSL readme, that consisted of a coupleMagnus Hagander2008-10-241-429/+1
* Fix an oversight in two different recent patches: nodes that support SRFsTom Lane2008-10-234-7/+15
* Remove useless ps_OuterTupleSlot field from PlanState. I suppose this wasTom Lane2008-10-232-15/+2
* * make pg_hba authoption be a set of 0 or more name=value pairsMagnus Hagander2008-10-234-213/+232
* Feature T173 "Extended LIKE clause in table definition" is supportedPeter Eisentraut2008-10-231-1/+1
* Feature T401 is not listed in the SQL standard. Must have been a mistake.Peter Eisentraut2008-10-231-1/+0
* When estimating without benefit of MCV lists (suggesting that one or bothTom Lane2008-10-231-1/+18
* Dept of better ideas: refrain from creating the planner's placeholder_listTom Lane2008-10-227-167/+91
* Fix GiST's killing tuple: GISTScanOpaque->curpos wasn'tTeodor Sigaev2008-10-221-19/+27
* SQL:2008 alternative syntax for LIMIT/OFFSET:Peter Eisentraut2008-10-223-13/+53
* Add a concept of "placeholder" variables to the planner. These are variablesTom Lane2008-10-2124-217/+1043
* Use format_type_be() instead of TypeNameToString() for some more user-facingPeter Eisentraut2008-10-214-26/+26
* Allow SQL:2008 syntax ALTER TABLE ... ALTER COLUMN ... SET DATA TYPEPeter Eisentraut2008-10-213-9/+15
* Properly access a buffer's LSN using existing access macros instead of abusingAlvaro Herrera2008-10-201-2/+2
* These functions no longer return a value, per complaint from gothic_moth viaAlvaro Herrera2008-10-201-6/+6
* Rework subtransaction commit protocol for hot standby.Alvaro Herrera2008-10-205-203/+272
* Remove support of backward scan in GiST. Per discussionTeodor Sigaev2008-10-201-25/+15
* SQL 200N -> SQL:2003Peter Eisentraut2008-10-201-2/+2
* Feature T411 is not found in SQL:2003 or 2008 anymore, so it must have beenPeter Eisentraut2008-10-201-1/+0
* Feature T152 "DISTINCT predicate with negation" is supported.Peter Eisentraut2008-10-201-1/+1
* Remove mark/restore support in GIN and GiST indexes.Teodor Sigaev2008-10-204-230/+18
* Feature F402 "Named column joins for LOBs, arrays, and multisets" isPeter Eisentraut2008-10-201-1/+1
* AS is no longer required in SELECT listPeter Eisentraut2008-10-201-1/+1
* Fix broken SQL features data, per buildfarm results.Tom Lane2008-10-181-1/+1
* Update feature list for SQL:2008.Peter Eisentraut2008-10-181-12/+145
* Remove useless mark/restore support in hash index AM, per discussion.Tom Lane2008-10-171-52/+8