summaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/selfuncs.c
Commit message (Expand)AuthorAgeFilesLines
* Tweak genericcostestimate's fudge factor for index size.Tom Lane2012-10-241-5/+7
* Avoid planner crash/Assert failure with joins to unflattened subqueries.Tom Lane2012-10-031-2/+4
* Split tuple struct defs from htup.h to htup_details.hAlvaro Herrera2012-08-301-0/+1
* Re-implement extraction of fixed prefixes from regular expressions.Tom Lane2012-07-101-171/+38
* Refactor pattern_fixed_prefix() to avoid dealing in incomplete patterns.Tom Lane2012-07-091-116/+50
* Fix planner to pass correct collation to operator selectivity estimators.Tom Lane2012-07-081-37/+59
* Run pgindent on 9.2 source tree in preparation for first 9.3Bruce Momjian2012-06-101-44/+47
* Fix an Assert that turns out to be reachable after all.Tom Lane2012-04-091-2/+7
* Clean up compiler warnings from unused variables with asserts disabledPeter Eisentraut2012-03-211-2/+2
* Improve estimation of IN/NOT IN by assuming array elements are distinct.Tom Lane2012-03-071-3/+71
* Collect and use element-frequency statistics for arrays.Tom Lane2012-03-031-13/+45
* Improve statistics estimation to make some use of DISTINCT in sub-queries.Tom Lane2012-02-161-35/+59
* Tweak index costing for problems with partial indexes.Tom Lane2012-01-291-39/+58
* Use parameterized paths to generate inner indexscans more flexibly.Tom Lane2012-01-271-24/+13
* Update copyright notices for year 2012.Bruce Momjian2012-01-011-1/+1
* Rethink representation of index clauses' mapping to index columns.Tom Lane2011-12-241-167/+142
* Improve planner's handling of duplicated index column expressions.Tom Lane2011-12-231-95/+109
* Add a security_barrier option for views.Robert Haas2011-12-221-0/+13
* Fix gincostestimate to handle ScalarArrayOpExpr reasonably.Tom Lane2011-12-201-144/+352
* Add SP-GiST (space-partitioned GiST) index access method.Tom Lane2011-12-171-0/+20
* Further improvement of make_greater_string.Tom Lane2011-10-301-9/+28
* Improve make_greater_string() with encoding-specific incrementers.Robert Haas2011-10-291-28/+37
* Don't trust deferred-unique indexes for join removal.Tom Lane2011-10-231-1/+3
* Teach btree to handle ScalarArrayOpExpr quals natively.Tom Lane2011-10-161-7/+0
* Fix recursion into previously planned sub-query in examine_simple_variable.Tom Lane2011-09-291-0/+11
* Move Timestamp/Interval typedefs and basic macros into datatype/timestamp.h.Tom Lane2011-09-091-0/+1
* Change get_variable_numdistinct's API to flag default estimates explicitly.Tom Lane2011-09-041-27/+43
* Dig down into sub-selects to look for column statistics.Tom Lane2011-09-041-33/+108
* Further repair of eqjoinsel ndistinct-clamping logic.Tom Lane2011-09-011-58/+50
* Improve eqjoinsel's ndistinct clamping to work for multiple levels of join.Tom Lane2011-08-311-8/+73
* Avoid listing ungrouped Vars in the targetlist of Agg-underneath-Window.Tom Lane2011-07-121-1/+3
* Move Trigger and TriggerDesc structs out of rel.h into a new reltrigger.hAlvaro Herrera2011-07-041-0/+1
* Pgindent run before 9.1 beta2.Bruce Momjian2011-06-091-12/+12
* Avoid possible divide-by-zero in gincostestimate.Tom Lane2011-04-211-0/+4
* Pass collations to functions in FunctionCallInfoData, not FmgrInfo.Tom Lane2011-04-121-55/+59
* Be more wary of missing statistics in eqjoinsel_semi().Tom Lane2011-04-121-17/+32
* Clean up most -Wunused-but-set-variable warnings from gcc 4.6Peter Eisentraut2011-04-111-6/+0
* Teach pattern_fixed_prefix() about collations.Tom Lane2011-04-111-40/+97
* pgindent run before PG 9.1 beta 1.Bruce Momjian2011-04-101-79/+78
* Fix make_greater_string to not have an undocumented collation assumption.Tom Lane2011-04-081-5/+8
* Clean up cruft around collation initialization for tupdescs and scankeys.Tom Lane2011-03-261-0/+1
* Pass collation to makeConst() instead of looking it up internally.Tom Lane2011-03-251-3/+37
* Revise collation derivation method and expression-tree representation.Tom Lane2011-03-191-9/+10
* Make all comparisons done for/with statistics use the default collation.Tom Lane2011-03-121-20/+24
* Fix bogus test for hypothetical indexes in get_actual_variable_range().Tom Lane2011-02-161-2/+2
* Per-column collation supportPeter Eisentraut2011-02-081-20/+26
* Fix up gincostestimate for new extractQuery API.Tom Lane2011-01-081-22/+43
* Stamp copyrights for year 2011.Bruce Momjian2011-01-011-1/+1
* Avoid unexpected conversion overflow in planner for distant date values.Tom Lane2010-12-281-2/+1
* Create core infrastructure for KNNGIST.Tom Lane2010-12-021-38/+55