summaryrefslogtreecommitdiff
path: root/src/backend/commands/analyze.c
Commit message (Expand)AuthorAgeFilesLines
* Run pgindent on 9.2 source tree in preparation for first 9.3Bruce Momjian2012-06-101-11/+11
* Update comments that became out-of-date with the PGXACT struct.Heikki Linnakangas2012-05-141-1/+1
* Dept of second thoughts: improve the API for AnalyzeForeignTable.Tom Lane2012-04-061-52/+42
* Allow statistics to be collected for foreign tables.Tom Lane2012-04-061-44/+102
* Collect and use element-frequency statistics for arrays.Tom Lane2012-03-031-7/+5
* Update copyright notices for year 2012.Bruce Momjian2012-01-011-1/+1
* Create a "sort support" interface API for faster sorting.Tom Lane2011-12-071-15/+13
* Move "hot" members of PGPROC into a separate PGXACT array.Robert Haas2011-11-251-2/+2
* Measure the number of all-visible pages for use in index-only scan costing.Tom Lane2011-10-141-2/+9
* Remove many -Wcast-qual warningsPeter Eisentraut2011-09-111-8/+8
* Move Timestamp/Interval typedefs and basic macros into datatype/timestamp.h.Tom Lane2011-09-091-0/+1
* Avoid possibly accessing off the end of memory in examine_attribute().Tom Lane2011-09-061-5/+4
* Clean up the #include mess a little.Tom Lane2011-09-041-0/+2
* Teach ANALYZE to clear pg_class.relhassubclass when appropriate.Tom Lane2011-09-021-5/+7
* Remove unnecessary #include references, per pgrminclude script.Bruce Momjian2011-09-011-4/+0
* Fix thinko in previous patch to always update pg_class.reltuples/relpages.Tom Lane2011-06-191-15/+2
* Index tuple data arrays using Anum_xxx symbolic constants instead of "i++".Tom Lane2011-06-161-7/+10
* Pgindent run before 9.1 beta2.Bruce Momjian2011-06-091-2/+2
* Fix VACUUM so that it always updates pg_class.reltuples/relpages.Tom Lane2011-05-301-35/+24
* Pass collations to functions in FunctionCallInfoData, not FmgrInfo.Tom Lane2011-04-121-5/+6
* pgindent run before PG 9.1 beta 1.Bruce Momjian2011-04-101-5/+5
* Revise collation derivation method and expression-tree representation.Tom Lane2011-03-191-2/+2
* Make all comparisons done for/with statistics use the default collation.Tom Lane2011-03-121-4/+5
* Per-column collation supportPeter Eisentraut2011-02-081-0/+4
* Avoid having autovacuum workers wait for relation locks.Robert Haas2011-02-071-1/+14
* Basic foreign table support.Robert Haas2011-01-011-1/+1
* Stamp copyrights for year 2011.Bruce Momjian2011-01-011-1/+1
* Repair memory leakage while ANALYZE-ing complex index expressions.Tom Lane2010-11-091-3/+20
* Provide hashing support for arrays.Tom Lane2010-10-301-1/+2
* Remove cvs keywords from all files.Magnus Hagander2010-09-201-1/+1
* Fix ANALYZE's ancient deficiency of not trying to collect stats for expressionTom Lane2010-08-011-38/+50
* pgindent run for 9.0Bruce Momjian2010-02-261-25/+25
* Wrap calls to SearchSysCache and related functions using macros.Robert Haas2010-02-141-9/+6
* Remove old-style VACUUM FULL (which was known for a little while asTom Lane2010-02-081-2/+1
* Tighten integrity checks on ALTER TABLE ... ALTER COLUMN ... RENAME.Robert Haas2010-02-011-2/+3
* Replace ALTER TABLE ... SET STATISTICS DISTINCT with a more general mechanism.Robert Haas2010-01-221-7/+27
* Update copyright for the year 2010.Bruce Momjian2010-01-021-2/+2
* Dept of second thoughts: recursive case in ANALYZE shouldn't emit aTom Lane2009-12-301-3/+6
* Revise pgstat's tracking of tuple changes to improve the reliability ofTom Lane2009-12-301-6/+10
* Add the ability to store inheritance-tree statistics in pg_statistic,Tom Lane2009-12-291-72/+286
* Prevent indirect security attacks via changing session-local state withinTom Lane2009-12-091-7/+15
* Provide a parenthesized-options syntax for VACUUM, analogous to that recentlyTom Lane2009-11-161-6/+6
* Fix old bug in log_autovacuum_min_duration code: it was relying on being ableTom Lane2009-08-121-9/+9
* Add ALTER TABLE ... ALTER COLUMN ... SET STATISTICS DISTINCTTom Lane2009-08-021-1/+9
* 8.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef listBruce Momjian2009-06-111-41/+45
* Improve the IndexVacuumInfo/IndexBulkDeleteResult API to allow somewhat saneTom Lane2009-06-061-2/+3
* Update relpages and reltuples estimates in stand-alone ANALYZE, even ifHeikki Linnakangas2009-05-191-12/+3
* Avoid integer overflow in the loop that extracts histogram entries fromTom Lane2009-05-051-4/+28
* Modify the relcache to record the temp status of both local and nonlocalTom Lane2009-03-311-2/+2
* Implement "fastupdate" support for GIN indexes, in which we try to accumulateTom Lane2009-03-241-1/+23