summaryrefslogtreecommitdiff
path: root/src/backend/utils/fmgr
Commit message (Expand)AuthorAgeFilesLines
* Update copyright for 2009.Bruce Momjian2009-01-013-6/+6
* Support window functions a la SQL:2008.Tom Lane2008-12-281-1/+74
* Remove inappropriate memory context switch in shutdown_MultiFuncCall().Tom Lane2008-11-301-2/+1
* Allow SQL-language functions to return the output of an INSERT/UPDATE/DELETETom Lane2008-10-311-2/+4
* Be more tense about not creating tuplestores with randomAccess = true unlessTom Lane2008-10-291-1/+5
* Extend ExecMakeFunctionResult() to support set-returning functions that returnTom Lane2008-10-281-3/+2
* If a loadable module has wrong values in its magic block, spell outTom Lane2008-09-031-18/+93
* Move exprType(), exprTypmod(), expression_tree_walker(), and related routinesTom Lane2008-08-252-4/+4
* Implement SQL-spec RETURNS TABLE syntax for functions.Tom Lane2008-07-181-6/+8
* Add a "provariadic" column to pg_proc to eliminate the remarkably expensiveTom Lane2008-07-161-4/+6
* Support "variadic" functions, which can accept a variable number of argumentsTom Lane2008-07-161-3/+5
* Change xlog.h to xlogdefs.h in bufpage.h, and fix fallout.Alvaro Herrera2008-06-061-1/+2
* Add support for tracking call counts and elapsed runtime for user-definedTom Lane2008-05-152-10/+41
* Restructure some header files a bit, in particular heapam.h, by removing someAlvaro Herrera2008-05-121-2/+1
* Allow float8, int8, and related datatypes to be passed by value on machinesTom Lane2008-04-212-26/+71
* Modify the float4 datatype to be pass-by-val. Along the way, remove the lastAlvaro Herrera2008-04-182-18/+32
* Clean up a few places where Datums were being treated as pointers (and viceAlvaro Herrera2008-04-171-4/+4
* Simplify and standardize conversions between TEXT datums and ordinary CTom Lane2008-03-252-13/+8
* Make source code READMEs more consistent. Add CVS tags to all README files.Bruce Momjian2008-03-201-9/+14
* Fix several memory leaks when rescanning SRFs. Arrange for an SRF'sNeil Conway2008-02-291-10/+19
* Refactor backend makefiles to remove lots of duplicate codePeter Eisentraut2008-02-191-9/+2
* Make standard maintenance operations (including VACUUM, ANALYZE, REINDEX,Tom Lane2008-01-031-19/+24
* Update copyrights in source tree to 2008.Bruce Momjian2008-01-013-6/+6
* pgindent run for 8.3.Bruce Momjian2007-11-151-7/+7
* Arrange for SET LOCAL's effects to persist until the end of the current topTom Lane2007-09-111-5/+3
* Implement function-local GUC parameter settings, as per recent discussion.Tom Lane2007-09-031-18/+73
* Fix security definer functions with polymorphic arguments. This case hasTom Lane2007-07-311-1/+2
* Add casts to suppress warnings about m68k-specific kluge in fmgr.c.Tom Lane2007-07-131-75/+141
* Some of our port-specific dynloader implementations are careful toTom Lane2007-07-121-3/+3
* Remove unused "caller" argument from stringToQualifiedNameList.Alvaro Herrera2007-06-261-2/+2
* Fix up text concatenation so that it accepts all the reasonable cases thatTom Lane2007-06-061-13/+26
* Support varlena fields with single-byte headers and unaligned storage.Tom Lane2007-04-061-4/+13
* Support enum data types. Along the way, use macros for the values ofTom Lane2007-04-021-13/+29
* Fix array coercion expressions to ensure that the correct volatility isTom Lane2007-03-271-3/+9
* Combine cmin and cmax fields of HeapTupleHeaders into a single field, byTom Lane2007-02-091-4/+4
* Replace some strncpy() by strlcpy().Peter Eisentraut2007-02-071-3/+2
* Wording cleanup for error messages. Also change can't -> cannot.Bruce Momjian2007-02-011-2/+2
* Update CVS HEAD for 2007 copyright. Back branches are typically notBruce Momjian2007-01-053-6/+6
* Message style improvementsPeter Eisentraut2006-10-061-2/+2
* pgindent run for 8.2.Bruce Momjian2006-10-042-36/+36
* Replace strncpy with strlcpy in selected places that seem possibly relevantTom Lane2006-09-271-6/+2
* Seems some C compilers think 'restrict' is a fully reserved word.Tom Lane2006-08-161-4/+4
* Add server support for "plugin" libraries that can be used for add-on tasksTom Lane2006-08-151-78/+192
* Add a feature for automatic initialization and finalization of dynamicallyTom Lane2006-08-081-3/+24
* Sort reference of include files, "A" - "F".Bruce Momjian2006-07-111-2/+2
* Fix problems with cached tuple descriptors disappearing while still in useTom Lane2006-06-161-6/+5
* Prepare code to be built by MSVC:Bruce Momjian2006-06-071-1/+5
* Make PG_MODULE_MAGIC required in shared libraries that are loaded intoTom Lane2006-05-311-9/+9
* Code review for magic-block patch. Remove separate header file pgmagic.h,Tom Lane2006-05-302-43/+52
* Add pgmagic header block to store compile-time constants:Bruce Momjian2006-05-301-2/+45