summaryrefslogtreecommitdiff
path: root/src/backend/nodes/copyfuncs.c
Commit message (Expand)AuthorAgeFilesLines
* Add CREATE OR REPLACE FUNCTION syntax to allow replacing a functionTom Lane2001-10-021-1/+2
* EXPLAIN ANALYZE feature to measure and show actual runtimes and tupleTom Lane2001-09-181-1/+2
* Transaction IDs wrap around, per my proposal of 13-Aug-01. MoreTom Lane2001-08-261-1/+2
* Restructure pg_opclass, pg_amop, and pg_amproc per previous discussions inTom Lane2001-08-211-3/+1
* Sequences are now based on int8, not int4, arithmetic. SERIAL pseudo-typeTom Lane2001-08-161-2/+1
* Make OIDs optional, per discussions in pghackers. WITH OIDS is still theTom Lane2001-08-101-2/+3
* Patch to LOCK multiple tables in one LOCK command.Bruce Momjian2001-08-101-3/+3
* Back out LOCK A,B,C patch at Tom's suggestion.Bruce Momjian2001-08-041-3/+3
* Add LOCK A,B,C functionality as LOCK A;LOCK B;LOCK C; as agreed.Bruce Momjian2001-08-041-3/+3
* More EXTEND INDEX removal.Bruce Momjian2001-07-161-16/+1
* Remove grammar restrictions on order of optional clauses in CREATE GROUP.Tom Lane2001-07-121-4/+2
* Changes from Vince Vielhaber to allow the optional clauses of CREATETom Lane2001-07-101-15/+4
* Add IS UNKNOWN, IS NOT UNKNOWN boolean tests, fix the existing booleanTom Lane2001-06-191-1/+43
* Allow GRANT/REVOKE to/from more than one user per invocation. Command tagPeter Eisentraut2001-06-091-10/+27
* Further work on making use of new statistics in planner. Adjust APIsTom Lane2001-06-051-2/+3
* Modify optimizer data structures so that IndexOptInfo lists built forTom Lane2001-05-201-25/+22
* Rewrite of planner statistics-gathering code. ANALYZE is now available asTom Lane2001-05-071-5/+6
* Remove dashes in comments that don't need them, rewrap with pgindent.Bruce Momjian2001-03-221-179/+124
* pgindent run. Make it all clean.Bruce Momjian2001-03-221-61/+66
* Change Copyright from PostgreSQL, Inc to PostgreSQL Global Development Group.Bruce Momjian2001-01-241-2/+2
* Change lcons(x, NIL) to makeList(x) where appropriate.Bruce Momjian2001-01-171-5/+5
* Remove not-really-standard implementation of CREATE TABLE's UNDER clause,Tom Lane2001-01-051-6/+6
* Planner speedup hacking. Avoid saving useless pathkeys, so that pathTom Lane2000-12-141-1/+6
* Cache eval cost of qualification expressions in RestrictInfo nodes toTom Lane2000-12-121-1/+2
* Make SET SESSION CHARACTERISTICS compliant with SQL 99. Remove redundant,Peter Eisentraut2000-11-241-14/+1
* Extend CREATE DATABASE to allow selection of a template database to beTom Lane2000-11-141-1/+3
* Restructure handling of inheritance queries so that they work with outerTom Lane2000-11-121-3/+31
* New CHECKPOINT command.Vadim B. Mikheev2000-11-051-1/+4
* Allow ORDER BY, LIMIT in sub-selects. Fix most (not all) cases whereTom Lane2000-11-051-2/+6
* Change the parser to convert SQL "position" and "substring" syntax toPeter Eisentraut2000-10-311-1/+3
* Re-implement LIMIT/OFFSET as a plan node type, instead of a hack inTom Lane2000-10-261-1/+29
* The following patch was sent to the patches list:Bruce Momjian2000-10-181-17/+3
* Arrange that no database accesses are attempted during parser() --- thisTom Lane2000-10-071-9/+5
* Reimplementation of UNION/INTERSECT/EXCEPT. INTERSECT/EXCEPT now meet theTom Lane2000-10-051-23/+55
* Subselects in FROM clause, per ISO syntax: FROM (SELECT ...) [AS] alias.Tom Lane2000-09-291-19/+52
* Fix coredump in copyCommentStmt().Tom Lane2000-09-201-2/+3
* First cut at full support for OUTER JOINs. There are still a few looseTom Lane2000-09-121-44/+70
* copyObject() and equal() now know about all parse-time node types,Tom Lane2000-08-111-9/+1004
* Remove 'func_tlist' from Func expression nodes, likewise 'param_tlist'Tom Lane2000-08-081-15/+29
* Remove 'Array' node type, which has evidently been dead code forTom Lane2000-07-221-24/+1
* Revise aggregate functions per earlier discussions in pghackers.Tom Lane2000-07-171-2/+1
* First stage of reclaiming memory in executor by resetting short-termTom Lane2000-07-121-2/+2
* Add test code to copy all parse/plan trees. Repair essential omissionsTom Lane2000-06-291-68/+82
* Reimplement nodeMaterial to use a temporary BufFile (or even memory, if theTom Lane2000-06-181-42/+3
* Ye-old pgindent run. Same 4-space tabs.Bruce Momjian2000-04-121-27/+29
* Add copyObject logic for TruncateStmt and a few other utility-statementTom Lane2000-04-081-17/+148
* Fix extremely nasty little bug observed when a sub-SELECT appears inTom Lane2000-04-041-6/+31
* Repair logic flaw in cost estimator: cost_nestloop() was estimating CPUTom Lane2000-03-221-1/+2
* Implement column aliases on views "CREATE VIEW name (collist)".Thomas G. Lockhart2000-03-141-1/+2
* Change parse-time representation of float literals (which include oversizeTom Lane2000-02-211-6/+4