summaryrefslogtreecommitdiff
path: root/src/backend
AgeCommit message (Expand)Author
2008-05-17Allow ALTER SEQUENCE START WITH to change the recorded start_value of aTom Lane
2008-05-16Add a RESTART (without parameter) option to ALTER SEQUENCE, allowing aTom Lane
2008-05-16Reduce unnecessary PANIC to ERROR, improve a couple of comments.Tom Lane
2008-05-16Extend GIN to support partial-match searches, and extend tsquery to supportTom Lane
2008-05-16Persuade GIN to react to control-C in a reasonable amount of timeTom Lane
2008-05-15Add code to eval_const_expressions() to support const-simplification ofTom 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-14Remove the special variable for open_sync_bit used in O_SYNC and O_DSYNCMagnus Hagander
2008-05-13Don't try to close negative file descriptors, since this can causeMagnus Hagander
2008-05-13This is the patch replace offnum++ by OffsetNumberNext, to beBruce Momjian
2008-05-12Improve snapshot manager by keeping explicit track of snapshots.Alvaro Herrera
2008-05-12Fix breakage by the wal_sync_method patch in installations that useMagnus Hagander
2008-05-12Put back bufmgr.h in bufpage.h -- it is needed by some macros.Alvaro Herrera
2008-05-12Report which WAL sync method we are trying to change *to* when it fails,Magnus Hagander
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-09Adjust power() error messages to be more descriptive.Bruce Momjian
2008-05-09Add "%option noinput" to the scanners to avoid compiler warnings. GCC 4.3Peter Eisentraut
2008-05-09Update C comments to mention SQL:2003 handling of power return values.Bruce Momjian
2008-05-09Fix Assert introduced in previous patch.Heikki Linnakangas
2008-05-09Fix incorrect archive truncation point calculation in the %r recovery_commandHeikki Linnakangas
2008-05-08Add regression test for various power expressions with a zero base, andBruce Momjian
2008-05-08Have numeric 0 ^ 4.3 return 1, rather than an error, and have 0 ^ 0.0Bruce Momjian
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-07The CONSTROID syscache should show conrelid as a relation OID column.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-04Use new cstring/text conversion functions in some additional places.Tom Lane
2008-05-03The 8.2 patch that added support for an alias on the target table ofTom Lane
2008-05-02Allow the planner's estimate of the fraction of a cursor's rows that will beTom Lane
2008-05-02Make the AWK default value also take effect if $AWK is an empty string.Peter Eisentraut
2008-05-02Remove the recently added USE_SEGMENTED_FILES option, and indeed remove allTom Lane
2008-05-01Make the minimum allowed value of work_mem be 64KB always, rather than havingTom Lane
2008-04-30Fix nodeTidscan.c to not trigger an error if the block number portion ofTom 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-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-24Remove transformAlterTableStmt's kluge to replace ColumnDef.is_not_nullTom Lane
2008-04-24Fix ALTER TABLE ADD COLUMN ... PRIMARY KEY so that the new column is correctlyTom Lane
2008-04-24Update error messages, per notes from Tom.Magnus Hagander
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-22Issue explicit error messages for attempts to use "shell" operators inTom Lane
2008-04-21Fix convert_IN_to_join to properly handle the case where the subselect'sTom Lane
2008-04-21Fix a couple of places in execMain that erroneously assumed that SELECT FORTom Lane