aboutsummaryrefslogtreecommitdiff
path: root/src/backend/parser/analyze.c
Commit message (Expand)AuthorAge
* Start adding some more documentation about the number types. MakePeter Eisentraut2001-08-24
* Restructure pg_opclass, pg_amop, and pg_amproc per previous discussions inTom Lane2001-08-21
* Sequences are now based on int8, not int4, arithmetic. SERIAL pseudo-typeTom Lane2001-08-16
* CREATE VIEW with optional column name list wasn't quite right for theTom Lane2001-08-11
* Partial indexes work again, courtesy of Martijn van Oosterhout.Tom Lane2001-07-16
* Prohibit a column from appearing twice in a PRIMARY KEY or UNIQUETom Lane2001-07-04
* Optimizer can now estimate selectivity of IS NULL, IS NOT NULL,Tom Lane2001-06-25
* Add TEMPORARY sequences and have SERIAL on a temp table have a temporaryBruce Momjian2001-06-23
* This patch adds support for %TYPE in CREATE FUNCTION argument and returnBruce Momjian2001-06-04
* Give error message, rather than coredump, for utility statements inTom Lane2001-06-04
* Make bit and bit varying types reject too long input. (They already triedPeter Eisentraut2001-05-22
* Small code cleanups,formatting.Bruce Momjian2001-05-18
* This patch should catch cases where the typesBruce Momjian2001-05-09
* Rewrite of planner statistics-gathering code. ANALYZE is now available asTom Lane2001-05-07
* Remove dashes in comments that don't need them, rewrap with pgindent.Bruce Momjian2001-03-22
* pgindent run. Make it all clean.Bruce Momjian2001-03-22
* Arrange for ORDER BY an expression on a UNION/INTERSECT/EXCEPT result,Tom Lane2001-02-15
* Repair problems with duplicate index names generated when CREATE TABLETom Lane2001-02-14
* Change scoping of table and join refnames to conform to SQL92: a JOINTom Lane2001-02-14
* Fix failure to create sequences for more than one SERIAL column in aTom Lane2001-01-27
* Change Copyright from PostgreSQL, Inc to PostgreSQL Global Development Group.Bruce Momjian2001-01-24
* Suppress unused-variable warning in non-Assert compilations.Tom Lane2001-01-19
* Remove compiler warning about uninitialized warnings.Bruce Momjian2001-01-08
* Remove not-really-standard implementation of CREATE TABLE's UNDER clause,Tom Lane2001-01-05
* Repair mishandling of PRIMARY KEY declaration that references anTom Lane2000-12-18
* transformForUpdate() mustn't assume rowMarks list is initially empty.Tom Lane2000-12-07
* Clean up handling of FOR UPDATE inside views and subselects ... make itTom Lane2000-12-06
* From Stephan Szabo:Tom Lane2000-12-05
* Repair breakage of rules containing INSERT ... SELECT actions, per bugTom Lane2000-12-05
* Make SET SESSION CHARACTERISTICS compliant with SQL 99. Remove redundant,Peter Eisentraut2000-11-24
* Treat plain 'BIT' as 'BIT(1)'.Peter Eisentraut2000-11-18
* Change SearchSysCache coding conventions so that a reference count isTom Lane2000-11-16
* Make DROP TABLE rollback-able: postpone physical file delete until commit.Tom Lane2000-11-08
* UNION select in a CREATE RULE caused a weird error, because transformRuleStmtTom Lane2000-11-05
* Allow ORDER BY, LIMIT in sub-selects. Fix most (not all) cases whereTom Lane2000-11-05
* This patch should allow primary/foreign keyBruce Momjian2000-11-04
* Arrange that no database accesses are attempted during parser() --- thisTom Lane2000-10-07
* Reimplementation of UNION/INTERSECT/EXCEPT. INTERSECT/EXCEPT now meet theTom Lane2000-10-05
* Subselects in FROM clause, per ISO syntax: FROM (SELECT ...) [AS] alias.Tom Lane2000-09-29
* the patch include:Bruce Momjian2000-09-25
* First cut at full support for OUTER JOINs. There are still a few looseTom Lane2000-09-12
* This is mostly the same as an earlier patch IBruce Momjian2000-08-29
* Make makeObjectName multibyte aware. Currently, it may produceTatsuo Ishii2000-08-22
* copyObject() and equal() now know about all parse-time node types,Tom Lane2000-08-11
* Remove 'func_tlist' from Func expression nodes, likewise 'param_tlist'Tom Lane2000-08-08
* More functions updated to new fmgr style --- money, name, tid datatypes.Tom Lane2000-08-03
* Remove useless and dangerous 'opt_type' option from CREATE INDEX.Tom Lane2000-07-15
* Implement nested block comments in the backend and in psql.Thomas G. Lockhart2000-07-14
* Remove memory leak from VACUUM parsing.Tom Lane2000-07-02
* Fix performance problems with pg_index lookups (see, for example,Tom Lane2000-06-17