aboutsummaryrefslogtreecommitdiff
path: root/src/backend/nodes/equalfuncs.c
Commit message (Expand)AuthorAge
* Arrange to convert EXISTS subqueries that are equivalent to hashable INTom Lane2008-08-22
* Implement SEMI and ANTI joins in the planner and executor. (Semijoins replaceTom Lane2008-08-14
* Teach the system how to use hashing for UNION. (INTERSECT/EXCEPT will follow,Tom Lane2008-08-07
* Rearrange the querytree representation of ORDER BY/GROUP BY/DISTINCT itemsTom Lane2008-08-02
* Support "variadic" functions, which can accept a variable number of argumentsTom Lane2008-07-16
* Add a RESTART (without parameter) option to ALTER SEQUENCE, allowing aTom Lane2008-05-16
* Remove typename from A_Const.Alvaro Herrera2008-04-29
* Push index operator lossiness determination down to GIST/GIN opclassTom Lane2008-04-14
* Remove TypeName struct's timezone flag, which has been write-only storageTom Lane2008-03-21
* Arrange for an explicit cast applied to an ARRAY[] constructor to be appliedTom Lane2008-03-20
* Add missing copyfuncs/equalfuncs support for AlterTSDictionaryStmt andTom Lane2008-02-07
* Update copyrights in source tree to 2008.Bruce Momjian2008-01-01
* Code review for LIKE ... INCLUDING INDEXES patch. Fix failure to propagateTom Lane2007-12-01
* Re-run pgindent with updated list of typedefs. (Updated README shouldBruce Momjian2007-11-15
* pgindent run for 8.3.Bruce Momjian2007-11-15
* Support SET FROM CURRENT in CREATE/ALTER FUNCTION, ALTER DATABASE, ALTER ROLE.Tom Lane2007-09-03
* Rewrite make_outerjoininfo's construction of min_lefthand and min_righthandTom Lane2007-08-31
* Implement CREATE TABLE LIKE ... INCLUDING INDEXES. Patch from NikhilS,Neil Conway2007-07-17
* Improve UPDATE/DELETE WHERE CURRENT OF so that they can be used from plpgsqlTom Lane2007-06-11
* Support UPDATE/DELETE WHERE CURRENT OF cursor_name, per SQL standard.Tom Lane2007-06-11
* Downgrade implicit casts to text to be assignment-only, except for the onesTom Lane2007-06-05
* Repair planner bug introduced in 8.2 by ability to rearrange outer joins:Tom Lane2007-05-22
* Modify processing of DECLARE CURSOR and EXPLAIN so that they can resolve theTom Lane2007-04-27
* Rename the newly-added commands for discarding session state.Neil Conway2007-04-26
* Support enum data types. Along the way, use macros for the values ofTom Lane2007-04-02
* Fix array coercion expressions to ensure that the correct volatility isTom Lane2007-03-27
* Fix up the remaining places where the expression node structure would loseTom Lane2007-03-17
* First phase of plan-invalidation project: create a plan cache managementTom Lane2007-03-13
* Turn the rangetable used by the executor into a flat list, and avoid storingTom Lane2007-02-22
* Remove the Query structure from the executor's API. This allows us to stopTom Lane2007-02-20
* Implement XMLSERIALIZE for real. Analogously, make the xml to text castPeter Eisentraut2007-02-03
* Add CREATE/ALTER/DROP OPERATOR FAMILY commands, also COMMENT ON OPERATORTom Lane2007-01-23
* Refactor planner's pathkeys data structure to create a separate, explicitTom Lane2007-01-20
* Change the planner-to-executor API so that the planner tells the executorTom Lane2007-01-10
* Support ORDER BY ... NULLS FIRST/LAST, and add ASC/DESC/NULLS FIRST/NULLS LASTTom Lane2007-01-09
* Update CVS HEAD for 2007 copyright. Back branches are typically notBruce Momjian2007-01-05
* Support type modifiers for user-defined types, and pull most knowledgeTom Lane2006-12-30
* Code review for XML patch. Instill a bit of sanity in the location ofTom Lane2006-12-24
* Restructure operator classes to allow improved handling of cross-data-typeTom Lane2006-12-23
* Initial SQL/XML support: xml data type and initial set of functions.Peter Eisentraut2006-12-21
* Add a paramtypmod field to Param nodes. This is dead weight for ParamsTom Lane2006-12-10
* Fix recently-understood problems with handling of XID freezing, particularlyTom Lane2006-11-05
* Code and docs review for ALTER TABLE INHERIT/NO INHERIT patch.Tom Lane2006-10-13
* pgindent run for 8.2.Bruce Momjian2006-10-04
* Extend COPY to support COPY (SELECT ...) TO ...Tom Lane2006-08-30
* Add the ability to create indexes 'concurrently', that is, withoutTom Lane2006-08-25
* Fix all known problems with pg_dump's handling of serial sequencesTom Lane2006-08-21
* Add INSERT/UPDATE/DELETE RETURNING, with basic docs and regression tests.Tom Lane2006-08-12
* Fix UNION/INTERSECT/EXCEPT so that when two inputs being merged haveTom Lane2006-08-10
* Add support for multi-row VALUES clauses as part of INSERT statementsJoe Conway2006-08-02