aboutsummaryrefslogtreecommitdiff
path: root/src/backend/commands/analyze.c
Commit message (Expand)AuthorAge
* Remove many -Wcast-qual warningsPeter Eisentraut2011-09-11
* Move Timestamp/Interval typedefs and basic macros into datatype/timestamp.h.Tom Lane2011-09-09
* Avoid possibly accessing off the end of memory in examine_attribute().Tom Lane2011-09-06
* Clean up the #include mess a little.Tom Lane2011-09-04
* Teach ANALYZE to clear pg_class.relhassubclass when appropriate.Tom Lane2011-09-02
* Remove unnecessary #include references, per pgrminclude script.Bruce Momjian2011-09-01
* Fix thinko in previous patch to always update pg_class.reltuples/relpages.Tom Lane2011-06-19
* Index tuple data arrays using Anum_xxx symbolic constants instead of "i++".Tom Lane2011-06-16
* Pgindent run before 9.1 beta2.Bruce Momjian2011-06-09
* Fix VACUUM so that it always updates pg_class.reltuples/relpages.Tom Lane2011-05-30
* Pass collations to functions in FunctionCallInfoData, not FmgrInfo.Tom Lane2011-04-12
* pgindent run before PG 9.1 beta 1.Bruce Momjian2011-04-10
* Revise collation derivation method and expression-tree representation.Tom Lane2011-03-19
* Make all comparisons done for/with statistics use the default collation.Tom Lane2011-03-12
* Per-column collation supportPeter Eisentraut2011-02-08
* Avoid having autovacuum workers wait for relation locks.Robert Haas2011-02-07
* Basic foreign table support.Robert Haas2011-01-01
* Stamp copyrights for year 2011.Bruce Momjian2011-01-01
* Repair memory leakage while ANALYZE-ing complex index expressions.Tom Lane2010-11-09
* Provide hashing support for arrays.Tom Lane2010-10-30
* Remove cvs keywords from all files.Magnus Hagander2010-09-20
* Fix ANALYZE's ancient deficiency of not trying to collect stats for expressionTom Lane2010-08-01
* pgindent run for 9.0Bruce Momjian2010-02-26
* Wrap calls to SearchSysCache and related functions using macros.Robert Haas2010-02-14
* Remove old-style VACUUM FULL (which was known for a little while asTom Lane2010-02-08
* Tighten integrity checks on ALTER TABLE ... ALTER COLUMN ... RENAME.Robert Haas2010-02-01
* Replace ALTER TABLE ... SET STATISTICS DISTINCT with a more general mechanism.Robert Haas2010-01-22
* Update copyright for the year 2010.Bruce Momjian2010-01-02
* Dept of second thoughts: recursive case in ANALYZE shouldn't emit aTom Lane2009-12-30
* Revise pgstat's tracking of tuple changes to improve the reliability ofTom Lane2009-12-30
* Add the ability to store inheritance-tree statistics in pg_statistic,Tom Lane2009-12-29
* Prevent indirect security attacks via changing session-local state withinTom Lane2009-12-09
* Provide a parenthesized-options syntax for VACUUM, analogous to that recentlyTom Lane2009-11-16
* Fix old bug in log_autovacuum_min_duration code: it was relying on being ableTom Lane2009-08-12
* Add ALTER TABLE ... ALTER COLUMN ... SET STATISTICS DISTINCTTom Lane2009-08-02
* 8.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef listBruce Momjian2009-06-11
* Improve the IndexVacuumInfo/IndexBulkDeleteResult API to allow somewhat saneTom Lane2009-06-06
* Update relpages and reltuples estimates in stand-alone ANALYZE, even ifHeikki Linnakangas2009-05-19
* Avoid integer overflow in the loop that extracts histogram entries fromTom Lane2009-05-05
* Modify the relcache to record the temp status of both local and nonlocalTom Lane2009-03-31
* Implement "fastupdate" support for GIN indexes, in which we try to accumulateTom Lane2009-03-24
* Support column-level privileges, as required by SQL standard.Tom Lane2009-01-22
* Clarify a confusing comment about MCVs vs histogram entries.Tom Lane2009-01-06
* Update copyright for 2009.Bruce Momjian2009-01-01
* Don't reset pg_class.reltuples and relpages in VACUUM, if any pages wereHeikki Linnakangas2008-12-17
* Increase the default value of default_statistics_target from 10 to 100,Tom Lane2008-12-13
* Make relhasrules and relhastriggers work like relhasindex, namely we letTom Lane2008-11-10
* Remove all uses of the deprecated functions heap_formtuple, heap_modifytuple,Tom Lane2008-11-02
* Unite ReadBufferWithFork, ReadBufferWithStrategy, and ZeroOrReadBufferHeikki Linnakangas2008-10-31
* Move exprType(), exprTypmod(), expression_tree_walker(), and related routinesTom Lane2008-08-25