summaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/selfuncs.c
AgeCommit message (Expand)Author
2002-12-17To suppress memory leakage in long-lived Lists, lremove() should pfreeTom Lane
2002-12-12Phase 2 of read-only-plans project: restructure expression-tree nodesTom Lane
2002-11-25Remove unused constisset and constiscast fields of Const nodes. CleanTom Lane
2002-11-19Add an at-least-marginally-plausible method of estimating the numberTom Lane
2002-11-08This patch removes a bunch of superfluous #include directives: ifBruce Momjian
2002-10-19Fix range-query estimation to not double-exclude NULLs, per gripe fromTom Lane
2002-09-20Tom Lane wrote:Bruce Momjian
2002-09-04pgindent run.Bruce Momjian
2002-09-03Remove all traces of multibyte and locale options. Clean up commentsPeter Eisentraut
2002-09-02> Okay. When you get back to the original issue, the gold is hidden inBruce Momjian
2002-08-29Remove #ifdef MULTIBYTE per hackers list discussion.Tatsuo Ishii
2002-08-22Add a bunch of pseudo-types to replace the behavior formerly associatedTom Lane
2002-06-20Update copyright to 2002.Bruce Momjian
2002-05-09Make initdb print a message about which locale it is about to use.Peter Eisentraut
2002-04-25Implement types regprocedure, regoper, regoperator, regclass, regtypeTom Lane
2002-04-21Support alternate storage scheme of 64-bit integer for date/time types.Thomas G. Lockhart
2002-04-16Operators live in namespaces. CREATE/DROP/COMMENT ON OPERATOR takeTom Lane
2002-04-03Locale support is on by default. The choice of locale is done in initdbPeter Eisentraut
2002-03-08TODO item done:Bruce Momjian
2002-03-02Commit to match discussed elog() changes. Only update is that LOG isBruce Momjian
2002-03-01Teach planner about the idea that a mergejoin won't necessarily readTom Lane
2002-01-03Guard against roundoff errors in new selectivity-estimation code,Tom Lane
2001-11-05New pgindent run with fixes suggested by Tom. Patch manually reviewed,Bruce Momjian
2001-10-28Another pgindent run. Fixes enum indenting, and improves #endifBruce Momjian
2001-10-25pgindent run on all C files. Java run to follow. initdb/regressionBruce Momjian
2001-10-13Make selectivity routines cope gracefully with NaNs, infinities, andTom Lane
2001-10-03Add missing TIMESTAMPTZ case.Tom Lane
2001-09-14> Here's a revised patch. Changes:Bruce Momjian
2001-08-13Add comparison operators and btree indexing support for type bytea.Tom Lane
2001-07-16Partial indexes work again, courtesy of Martijn van Oosterhout.Tom Lane
2001-06-25Optimizer can now estimate selectivity of IS NULL, IS NOT NULL,Tom Lane
2001-06-09Teach convert_to_scalar about datatypes timetz, inet, cidr, macaddr.Tom Lane
2001-06-05Further work on making use of new statistics in planner. Adjust APIsTom Lane
2001-05-27Fix eqjoinsel() to make use of new statistics.Tom Lane
2001-05-20Modify optimizer data structures so that IndexOptInfo lists built forTom Lane
2001-05-09First cut at making indexscan cost estimates depend on correlationTom Lane
2001-05-07Rewrite of planner statistics-gathering code. ANALYZE is now available asTom Lane
2001-03-23Fix comments that were mis-wrapped, for Tom Lane.Bruce Momjian
2001-03-22pgindent run. Make it all clean.Bruce Momjian
2001-01-24Change Copyright from PostgreSQL, Inc to PostgreSQL Global Development Group.Bruce Momjian
2000-12-03Ensure that all uses of <ctype.h> functions are applied to unsigned-charTom Lane
2000-11-25Store current LC_COLLATE and LC_CTYPE settings in pg_control during initdb;Tom Lane
2000-11-16Change SearchSysCache coding conventions so that a reference count isTom Lane
2000-11-10Use SearchSysCacheTupleCopy() instead of SearchSysCacheTuple() inHiroshi Inoue
2000-10-05Add proofreader's changes to docs.Bruce Momjian
2000-09-15Reimplement LIKE/ESCAPE as operators so that indexscan optimizationTom Lane
2000-08-03More functions updated to new fmgr style --- money, name, tid datatypes.Tom Lane
2000-08-03Repair bug noted by Paul Caskey: neqsel() has been generating a bogusTom Lane
2000-07-29bpchar, varchar, bytea, numeric are toastable --- if you initdb, whichTom Lane
2000-07-06Functions on 'text' type updated to new fmgr style. 'text' isTom Lane