summaryrefslogtreecommitdiff
path: root/src/include
AgeCommit message (Expand)Author
2008-06-10Comment fix, should say TSQuery instead of TSVector.Heikki Linnakangas
2008-06-08Rewrite DROP's dependency traversal algorithm into an honest two-passTom Lane
2008-06-08Move BufferGetPageSize and BufferGetPage from bufpage.h to bufmgr.h. It isAlvaro Herrera
2008-06-06Change xlog.h to xlogdefs.h in bufpage.h, and fix fallout.Alvaro Herrera
2008-06-05Modify vacuum() to accept a single relation OID instead of a list (which weAlvaro Herrera
2008-05-29Improve the documentation comment for replace(). Robert TreatTom Lane
2008-05-28Add a field to guc enums to allow hiding of values from display whileMagnus Hagander
2008-05-27Alter the xxx_pattern_ops opclasses to use the regular equality operator ofTom Lane
2008-05-19Make to_char()'s localized month/day names depend on LC_TIME, not LC_MESSAGES.Tom Lane
2008-05-17Fix a subtle bug exposed by recent wal_sync_method rearrangements.Tom Lane
2008-05-17Remove DEFAULT_SYNC_FLAGBIT ... not used anymore.Tom Lane
2008-05-17Add $PostgreSQL$ markers to a lot of files that were missing them.Andrew Dunstan
2008-05-16Add a RESTART (without parameter) option to ALTER SEQUENCE, allowing aTom Lane
2008-05-16Extend GIN to support partial-match searches, and extend tsquery to supportTom Lane
2008-05-15Support SQL/PSM-compatible CASE statement in plpgsql.Tom Lane
2008-05-15Add support for tracking call counts and elapsed runtime for user-definedTom Lane
2008-05-14Move the "instr_time" typedef and associated macros into a new headerTom Lane
2008-05-12Improve snapshot manager by keeping explicit track of snapshots.Alvaro Herrera
2008-05-12Put back bufmgr.h in bufpage.h -- it is needed by some macros.Alvaro Herrera
2008-05-12Convert wal_sync_method to guc enum.Magnus Hagander
2008-05-12Restructure some header files a bit, in particular heapam.h, by removing someAlvaro Herrera
2008-05-09Change the rules for inherited CHECK constraints to be essentially the sameTom Lane
2008-05-08Make the new pg_stat_get_activity use OUT parameters, so you don't have toMagnus Hagander
2008-05-07Make the pg_stat_activity view call a SRF (pg_stat_get_activity())Magnus Hagander
2008-05-07Convert the list of syscache names from a series of #define's into an enum,Tom Lane
2008-05-04Add timestamp and timestamptz versions of generate_series().Tom Lane
2008-05-04Add pg_conf_load_time() function to report when the Postgres configurationTom Lane
2008-05-03Provide for MSVC config equivalents of recently added configure options. RemoveAndrew Dunstan
2008-05-02Allow the planner's estimate of the fraction of a cursor's rows that will beTom Lane
2008-05-02Extend yesterday's patch making BLCKSZ and RELSEG_SIZE configurable to alsoTom Lane
2008-05-02Sigh ... pg_config.h.win32 needs to define BLCKSZ and RELSEG_SIZE now.Tom Lane
2008-05-02Remove the recently added USE_SEGMENTED_FILES option, and indeed remove allTom Lane
2008-04-29Some minor further cleanup around A_Const. Don't attach a typecast inTom Lane
2008-04-29Fix REASSIGN OWNED so that it works on procedural languages too.Alvaro Herrera
2008-04-29Remove typename from A_Const.Alvaro Herrera
2008-04-29Fix volatility marking for the generate_series and generate_subscripts familiesAlvaro Herrera
2008-04-28Bump the catversion for the previous patch.Alvaro Herrera
2008-04-28Add generate_subscripts, a series-generation function which generates anAlvaro Herrera
2008-04-26Code review for recent patch to terminate online backup during shutdown:Tom Lane
2008-04-23Prevent shutdown in normal mode if online backup is running, andMagnus Hagander
2008-04-22Fix using too many LWLocks bug, reported by Craig RingerTeodor Sigaev
2008-04-21Fix convert_IN_to_join to properly handle the case where the subselect'sTom Lane
2008-04-21Clean up float4byval and float8byval handling by dealing with them completelyMagnus Hagander
2008-04-21Add FLOAT4PASSBYVAL/FLOAT8PASSBYVAL to pg_config.h.win32, as a stopgapTom Lane
2008-04-21Allow float8, int8, and related datatypes to be passed by value on machinesTom Lane
2008-04-18Modify the float4 datatype to be pass-by-val. Along the way, remove the lastAlvaro Herrera
2008-04-18Fix rmtree() so that it keeps going after failure to remove any individualTom Lane
2008-04-18Cause EXPLAIN's VERBOSE option to print the target list (output column list)Tom Lane
2008-04-17Fix a couple of oversights associated with the "physical tlist" optimization:Tom Lane
2008-04-17Re-enable pg_terminate_backend() using SIGTERM. SIGTERM testing stillBruce Momjian